From 120ce4913ae2f6816f7338eb2f521e49aa9ae662 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 3 Mar 2008 22:26:49 +0000 Subject: - use cdrom:// instead of removable:// in urpmi.cfg (urpmi 5.7) --- perl-install/install/media.pm | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'perl-install/install/media.pm') diff --git a/perl-install/install/media.pm b/perl-install/install/media.pm index c9ff9cfe0..f5974ee79 100644 --- a/perl-install/install/media.pm +++ b/perl-install/install/media.pm @@ -946,19 +946,12 @@ sub install_urpmi { my ($dir, $removable_device, $static); my $phys_m = $medium->{phys_medium}; - if ($phys_m->{method} eq 'ftp' || $phys_m->{method} eq 'http') { + if ($phys_m->{method} eq 'ftp' || $phys_m->{method} eq 'http' || $phys_m->{method} eq 'cdrom') { $dir = $phys_m->{url}; - } else { - #- for cdrom, removable://... is best since it mounts *and* umounts cdrom - #- for iso files, removable://... doesn't work correctly - my $urpmi_method = $phys_m->{method} eq 'cdrom' ? 'removable' : 'file'; + } elsif ($phys_m->{method} eq 'iso') { + my $urpmi_method = 'file'; $dir = "$urpmi_method:/$phys_m->{mntpoint}$phys_m->{rel_path}"; - if ($phys_m->{method} eq 'iso') { - $removable_device = $phys_m->{loopback_device}{mntpoint} . $phys_m->{loopback_file}; - } elsif ($phys_m->{method} eq 'cdrom') { - $removable_device = devices::make($phys_m->{device}); - $static = 1; - } + $removable_device = $phys_m->{loopback_device}{mntpoint} . $phys_m->{loopback_file}; } $dir = MDK::Common::File::concat_symlink($dir, $medium->{rpmsdir}); -- cgit v1.2.1