summaryrefslogtreecommitdiffstats
path: root/perl-install/install/media.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-03-02 13:59:19 +0000
committerThierry Vignaud <tv@mandriva.org>2009-03-02 13:59:19 +0000
commit917b6de90beddeecf819a4a8ba75e5b91e9ddfe9 (patch)
tree0f095362ab029d6bcb10a46b1eac9643af1bf00f /perl-install/install/media.pm
parentfc2ab17ea71913f7cda6fa11da9a0c476ecb9610 (diff)
downloaddrakx-backup-do-not-use-917b6de90beddeecf819a4a8ba75e5b91e9ddfe9.tar
drakx-backup-do-not-use-917b6de90beddeecf819a4a8ba75e5b91e9ddfe9.tar.gz
drakx-backup-do-not-use-917b6de90beddeecf819a4a8ba75e5b91e9ddfe9.tar.bz2
drakx-backup-do-not-use-917b6de90beddeecf819a4a8ba75e5b91e9ddfe9.tar.xz
drakx-backup-do-not-use-917b6de90beddeecf819a4a8ba75e5b91e9ddfe9.zip
use urpmi code in order to add media (and replace medium->{selected}
by medium->{ignore} for compatibility with urpmi)
Diffstat (limited to 'perl-install/install/media.pm')
-rw-r--r--perl-install/install/media.pm31
1 files changed, 30 insertions, 1 deletions
diff --git a/perl-install/install/media.pm b/perl-install/install/media.pm
index 3cd65aa9c..43bf5aef0 100644
--- a/perl-install/install/media.pm
+++ b/perl-install/install/media.pm
@@ -8,6 +8,7 @@ our @EXPORT_OK = qw(getFile_ getAndSaveFile_ getAndSaveFile_media_info packageMe
use common;
use fs::type;
use urpm::download;
+use urpm::media;
#- list of fields for {phys_medium} :
#- device
@@ -483,7 +484,11 @@ sub get_media {
foreach (@$media) {
if ($_->{type} eq 'media_cfg') {
my $phys_m = url2mounted_phys_medium($o, $_->{url}, 'media_info');
- ($suppl_CDs, $copy_rpms_on_disk) = get_media_cfg($o, $phys_m, $packages, $_->{selected_names}, $_->{force_rpmsrate});
+ my $uri = $phys_m->{method} =~ m!^(ftp|http)://! && $phys_m->{method}
+ || $phys_m->{real_mntpoint} || $phys_m->{url};
+ urpm::media::add_distrib_media($packages, undef, $uri, ask_media => undef); #allmedia => 1
+ _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});
get_standalone_medium($o, $phys_m, $packages, { name => $_->{id} =~ /media=(.*)/ && $1 });
@@ -498,6 +503,13 @@ sub get_media {
log::l("unknown media type $_->{type}, skipping");
}
}
+
+ urpm::media::update_media($packages, distrib => 1, callback => \&urpm::download::sync_logger) or
+ log::l('updating media failed');
+
+ urpm::media::configure($packages);
+ log::l('urpmi completely set up');
+
log::l("suppl_CDs=$suppl_CDs copy_rpms_on_disk=$copy_rpms_on_disk");
$suppl_CDs, $copy_rpms_on_disk;
}
@@ -584,6 +596,23 @@ sub _url2phys_medium {
}
}
+# shrinked down get_media_cfg() in order to keep optins that urpmi discards:
+sub _get_media_cfg_options {
+ my ($o, $phys_medium) = @_;
+
+ my ($distribconf);
+ if (getAndSaveFile_($phys_medium, 'media_info/media.cfg', '/tmp/media.cfg')) {
+ ($distribconf) = _parse_media_cfg('/tmp/media.cfg', $phys_medium);
+ } else {
+ die "media.cfg not found";
+ }
+
+ my $suppl_CDs = exists $o->{supplmedia} ? $o->{supplmedia} : $distribconf->{suppl} || 0;
+
+ $suppl_CDs, $o->{copy_rpms_on_disk};
+}
+
+
sub get_media_cfg {
my ($o, $phys_medium, $packages, $selected_names, $force_rpmsrate) = @_;