- Add MAXCDS config variable, which forces debian-cd to stop after a given
number of binary CDs.
This commit is contained in:
parent
2241a12613
commit
c9802cb2c2
4
CONF.sh
4
CONF.sh
|
@ -41,6 +41,7 @@ unset BASE_INCLUDE || true
|
|||
unset BASE_EXCLUDE || true
|
||||
unset INSTALLER_CD || true
|
||||
unset DI_CODENAME || true
|
||||
unset MAXCDS || true
|
||||
|
||||
|
||||
# The debian-cd dir
|
||||
|
@ -261,3 +262,6 @@ export PUBLISH_PATH="/home/jigdo-area/"
|
|||
# INSTALLER_CD=1: just add debian-installer (use TASK=tasks/debian-installer)
|
||||
# INSTALLER_CD=2: add d-i and base (use TASK=tasks/debian-installer+kernel)
|
||||
#export INSTALLER_CD=0
|
||||
|
||||
# If set, limits the number of binary CDs to produce.
|
||||
#MAXCDS=1
|
||||
|
|
|
@ -27,6 +27,8 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
|
|||
of hw-detect.
|
||||
- Add tools/get_diskusage.pl (originally by Petter).
|
||||
- Add update-popcon Makefile target (taken from Skolelinux).
|
||||
- Add MAXCDS config variable, which forces debian-cd to stop after a given
|
||||
number of binary CDs.
|
||||
* Petter Reinholdtsen
|
||||
- Regenereated tasks/popularity-contest-sarge based on the current data.
|
||||
- Avoid kernel versions 2.4.24 and 2.6.3 on the first i386 CD, as we
|
||||
|
|
|
@ -23,6 +23,7 @@ my $complete = $ENV{'COMPLETE'} || 0;
|
|||
my $exclude = "$list.exclude";
|
||||
my $norecommends = $ENV{'NORECOMMENDS'} || 0;
|
||||
my $nosuggests = $ENV{'NOSUGGESTS'} || 1;
|
||||
my $maxcds = $ENV{'MAXCDS'} || 0;
|
||||
|
||||
my $apt = "$ENV{'BASEDIR'}/tools/apt-selection";
|
||||
my $adir = "$ENV{'APTTMP'}/$ENV{'CODENAME'}-$ENV{'ARCH'}";
|
||||
|
@ -284,7 +285,14 @@ foreach (glob("$dir/*.packages")) {
|
|||
}
|
||||
|
||||
# Now write the lists down
|
||||
my $numcds=0;
|
||||
foreach (sort { $a <=> $b } keys %cds) {
|
||||
if ($maxcds && $numcds+1 > $maxcds) {
|
||||
msg(0, "Stopping at CD $numcds\n");
|
||||
last;
|
||||
}
|
||||
$numcds++;
|
||||
|
||||
my $count = 0;
|
||||
open(CDLIST, "> $dir/$_.packages")
|
||||
|| die "Can't write in $dir/$_.packages: $!\n";
|
||||
|
|
Loading…
Reference in New Issue