summaryrefslogtreecommitdiffstats
path: root/perl-install/install/media.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-03-06 16:13:45 +0000
committerThierry Vignaud <tv@mandriva.org>2009-03-06 16:13:45 +0000
commit46d08e1be390ef7edc422b0e3cd78de206cbfe41 (patch)
tree258fbc07d91a28c8408961c06e3bf3ff6949e742 /perl-install/install/media.pm
parente848b0ae86a325beb5bc8cdb7352562b2738a8a2 (diff)
downloaddrakx-backup-do-not-use-46d08e1be390ef7edc422b0e3cd78de206cbfe41.tar
drakx-backup-do-not-use-46d08e1be390ef7edc422b0e3cd78de206cbfe41.tar.gz
drakx-backup-do-not-use-46d08e1be390ef7edc422b0e3cd78de206cbfe41.tar.bz2
drakx-backup-do-not-use-46d08e1be390ef7edc422b0e3cd78de206cbfe41.tar.xz
drakx-backup-do-not-use-46d08e1be390ef7edc422b0e3cd78de206cbfe41.zip
(get_media) fix setting urpmi media for CDROM installation whose tree
differ from other types of installation (also fix getting compsUser.pl for CD-ROM)
Diffstat (limited to 'perl-install/install/media.pm')
-rw-r--r--perl-install/install/media.pm9
1 files changed, 7 insertions, 2 deletions
diff --git a/perl-install/install/media.pm b/perl-install/install/media.pm
index 5b6441b4c..2dbcc01d8 100644
--- a/perl-install/install/media.pm
+++ b/perl-install/install/media.pm
@@ -501,13 +501,18 @@ sub get_media {
my $uri = $o->{stage2_phys_medium}{url} =~ m!^(http|ftp)://! && $o->{stage2_phys_medium}{url} ||
$phys_m->{method} =~ m!^(ftp|http)://! && $phys_m->{method}
|| $phys_m->{real_mntpoint} || $phys_m->{url};
+ # adjust URI for cdroms if needed:
+ if ($o->{stage2_phys_medium}{method} eq 'cdrom') {
+ $uri .= "/" . arch();
+ system('cp', "$uri/media/media_info/compssUsers.pl", '/tmp/compssUsers.pl');
+ } else {
+ _get_compsUsers_pl($phys_m, $_->{force_rpmsrate});
+ }
urpm::media::add_distrib_media($packages, undef, $uri, ask_media => undef); #allmedia => 1
if (defined $_->{selected_names}) {
select_only_some_media($packages, $_->{selected_names});
}
-
- _get_compsUsers_pl($phys_m, $_->{force_rpmsrate});
($suppl_CDs, $copy_rpms_on_disk) = eval { _get_media_cfg_options($o, $phys_m) };
} elsif ($_->{type} eq 'media') {
my $phys_m = url2mounted_phys_medium($o, $_->{url});