[Debian-NP-Commits] r217 - people/vagrant/simple-cdd

Vagrant Cascadian debian-np-devel@lists.alioth.debian.org
Thu, 18 Nov 2004 23:42:11 -0700


Author: vagrant-guest
Date: Thu Nov 18 23:42:01 2004
New Revision: 217

Modified:
   people/vagrant/simple-cdd/CONF.sh
   people/vagrant/simple-cdd/build-simple-cdd
Log:
use a separate file for the task and the initial package list.


Modified: people/vagrant/simple-cdd/CONF.sh
==============================================================================
--- people/vagrant/simple-cdd/CONF.sh	(original)
+++ people/vagrant/simple-cdd/CONF.sh	Thu Nov 18 23:42:01 2004
@@ -296,7 +296,7 @@
 export CONTRIB=0
 export MAXCDS=1
 # TASK should point to same file as include-task in debpartial-mirror.conf
-export TASK=$simple_cdd_path/simple-cdd-packages.list
+export TASK=$simple_cdd_path/simple-cdd.task
 export INSTALLER_CD=2
 # increase the size limit if debian-cd tries to make more CDs than you
 # want, and the generated CDs are smaller than 650MB.
@@ -306,7 +306,7 @@
 includes="$BASEDIR/tasks/debian-installer+kernel $BASEDIR/tasks/debian-installer $BASEDIR/tasks/base-sarge"
 
 # files which contain lists of packages
-package_files=""
+package_files="simple-cdd-packages.list"
 
 # list of packages to mirror
 all_packages=""

Modified: people/vagrant/simple-cdd/build-simple-cdd
==============================================================================
--- people/vagrant/simple-cdd/build-simple-cdd	(original)
+++ people/vagrant/simple-cdd/build-simple-cdd	Thu Nov 18 23:42:01 2004
@@ -14,7 +14,7 @@
 fi
 
 # get lists of packages from files
-for l in $package_files $TASK ; do
+for l in $package_files ; do
   all_packages="$all_packages $(egrep -v ^# $l)"
 done