diff options
author | Francois Pons <fpons@mandriva.com> | 2001-01-19 10:03:36 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-01-19 10:03:36 +0000 |
commit | 52b1f86b3bd907d4c39bd0d511a41d36a03c4571 (patch) | |
tree | ce017e5ff388c474505965300338ac052cc9547e | |
parent | a3534ad0fe0eb97ee92a975c40be4d04a86e975d (diff) | |
download | drakx-52b1f86b3bd907d4c39bd0d511a41d36a03c4571.tar drakx-52b1f86b3bd907d4c39bd0d511a41d36a03c4571.tar.gz drakx-52b1f86b3bd907d4c39bd0d511a41d36a03c4571.tar.bz2 drakx-52b1f86b3bd907d4c39bd0d511a41d36a03c4571.tar.xz drakx-52b1f86b3bd907d4c39bd0d511a41d36a03c4571.zip |
fixes for CD not changeable.
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index a93a813b4..b4fcd68a6 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -85,7 +85,7 @@ sub errorOpeningFile($) { my $max = 32; #- always refuse after $max tries. if ($::o->{method} eq "cdrom") { - cat_("/proc/mounts") =~ m|(/tmp/\S+)\s+/tmp/image| and $cdrom = $1; + cat_("/proc/mounts") =~ m,(/(?:dev|tmp)/\S+)\s+/tmp/image, and $cdrom = $1; return unless $cdrom; ejectCdrom($cdrom); while ($max > 0 && askChangeMedium($::o->{method}, $asked_medium)) { |