summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-08-31 07:57:06 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-08-31 07:57:06 +0000
commit0a7dfe2a26c1ec57892cb47d6fa87daf3e372855 (patch)
tree66bb52e22def658b8c8c7f097db33491936aa325 /perl-install/pkgs.pm
parent8b2c144f3ef57416c3f76ed77bf70fe5fb37fce1 (diff)
downloaddrakx-0a7dfe2a26c1ec57892cb47d6fa87daf3e372855.tar
drakx-0a7dfe2a26c1ec57892cb47d6fa87daf3e372855.tar.gz
drakx-0a7dfe2a26c1ec57892cb47d6fa87daf3e372855.tar.bz2
drakx-0a7dfe2a26c1ec57892cb47d6fa87daf3e372855.tar.xz
drakx-0a7dfe2a26c1ec57892cb47d6fa87daf3e372855.zip
Support for unselecting some media before the install (begin.)
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm21
1 files changed, 13 insertions, 8 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 7b66bca23..f4ef13220 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -378,7 +378,8 @@ sub psUpdateHdlistsDeps {
}
sub psUsingHdlists {
- my ($prefix, $method, $o_hdlistsfile, $o_packages, $o_initialmedium) = @_;
+ my ($o, $method, $o_hdlistsfile, $o_packages, $o_initialmedium) = @_;
+ my $prefix = $o->{prefix};
my $listf = install_any::getFile($o_hdlistsfile || 'media/media_info/hdlists')
or die "no hdlists found";
my $suppl_CDs = 0;
@@ -390,6 +391,7 @@ sub psUsingHdlists {
#- parse hdlists file.
my $medium_name = $o_initialmedium || 1;
+ my @hdlists;
foreach (<$listf>) {
chomp;
s/\s*#.*$//;
@@ -397,17 +399,20 @@ sub psUsingHdlists {
#- we'll ask afterwards for supplementary CDs, if the hdlists file contains
#- a line that begins with "suppl"
if (/^suppl/) { $suppl_CDs = 1; next }
+ my $cdsuppl = index($medium_name, 's') >= 0;
m/^\s*(noauto:)?(hdlist\S*\.cz2?)\s+(\S+)\s*(.*)$/ or die qq(invalid hdlist description "$_" in hdlists file);
+ push @hdlists, [ $2, $medium_name, $3, $4, !$1,
+ #- hdlist path, suppl CDs are mounted on /mnt/cdrom :
+ $cdsuppl ? "/mnt/cdrom/media/media_info/$2" : undef,
+ ];
+ $cdsuppl ? ($medium_name = ($medium_name + 1) . 's') : ++$medium_name;
+ }
+ @hdlists = $o->deselectFoundMedia(\@hdlists) unless defined $o_initialmedium;
+ foreach my $h (@hdlists) {
#- make sure the first medium is always selected!
#- by default select all image.
- psUsingHdlist(
- $prefix, $method, $o_packages, $2, $medium_name, $3, $4, !$1,
- #- hdlist path, suppl CDs are mounted on /mnt/cdrom :
- index($medium_name, 's') >= 0 ? "/mnt/cdrom/media/media_info/$2" : undef,
- );
-
- $medium_name =~ /s$/ ? ($medium_name = ($medium_name + 1) . 's') : ++$medium_name;
+ psUsingHdlist($prefix, $method, $o_packages, @$h);
}
log::l("psUsingHdlists read " . int(@{$o_packages->{depslist}}) .