r148 - branches/rewrite/tests/Config

Otavio Salvador partial-mirror-devel@lists.alioth.debian.org
Sat, 03 Jul 2004 15:23:37 -0600


Author: otavio
Date: Sat Jul  3 15:23:37 2004
New Revision: 148

Modified:
   branches/rewrite/tests/Config/missingrequired.conf
Log:
Cleanup.

Modified: branches/rewrite/tests/Config/missingrequired.conf
==============================================================================
--- branches/rewrite/tests/Config/missingrequired.conf	(original)
+++ branches/rewrite/tests/Config/missingrequired.conf	Sat Jul  3 15:23:37 2004
@@ -3,71 +3,45 @@
 ;;
 ;; $Id: debpartial-mirror.conf 130 2004-07-02 12:33:24Z natbudin-guest $
 
-[GLOBAL]
-;; Show debug information?
-;debug = DEBUG
+;;
+;; This is missing the architectes (required) option
+;;
 
-;; Mirror destination directory
+[GLOBAL]
 mirror_dir = /var/cache/debpartial-mirror/
 
-;; Which architectures should I download?
-;; COMMENTED OUT - this is a required option, so it should make this fail
-;architectures = i386
-
-;; What should I look for, by default?
 sections = main
 distributions = stable
 
-;; What should I get?
 get_suggests = true
 get_recommends = true
 get_provides = true
 
-;; Here is our first backend.  It mirrors a subset of packages from the
-;; Debian official repositories.
 [sarge]
-
-;; Where do we get the packages from?
 server = http://ftp.debian.org/debian
 
-;; Since we specify sections and distributions in this section, what we
-;; specify here overrides the settings in [DEFAULT].
 sections = main
 distributions = sarge
 
-;; Only get a subset of the packages in this source.
 filter = subsection:base priority:important
 
-;; Here is another backend.  This one will get all the debian-installer
-;; packages from the unstable distribution (sid).
 [sid_debian-installer]
 server = http://ftp.debian.org/debian
 sections = main/debian-installer
 distributions = sid
 filter = all
 
-;; You can use debian-cd tasks to include or exclude a subset of the
-;; packages.
 include_from_task = /usr/share/debian-cd/tasks/base-sarge
 exclude_from_task = /usr/share/debian-cd/tasks/exclude-sarge
 
-;; This backend is a local repository, as you can see from the use of the
-;; file:// URL.  The idea is that we have a set of custom-made packages
-;; stored on the local computer.
 [local_custom_packages]
 server = file:///var/lib/custom-packages
 sections = main
 distributions = local
 filter = all
 
-;; These packages depend on Debian official packages.  We will use the
-;; "sarge" backend (above) to satisfy these dependencies.
 resolve_deps_using = sarge
 
-;; Here is a merging backend.  It uses the backends we specify above to
-;; create a custom distribution that provides all the packages in each
-;; backend.  This will be created using hard links to the package files
-;; in each backend directory.
 [my_custom_debian_distro]
 backends = sarge sid_debian-installer local_custom_packages
 name = sarge-with-sids-installer-and-some-other-stuff