diff options
author | Francois Pons <fpons@mandriva.com> | 2000-12-04 17:39:36 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-12-04 17:39:36 +0000 |
commit | 1014d6c5772017742b12dbe8b34653104a87a773 (patch) | |
tree | 90e3fe9e669d05007b12329b23566c178f0e5d34 | |
parent | 16bc60199ce6737b90adacc457463cf877062ac3 (diff) | |
download | drakx-1014d6c5772017742b12dbe8b34653104a87a773.tar drakx-1014d6c5772017742b12dbe8b34653104a87a773.tar.gz drakx-1014d6c5772017742b12dbe8b34653104a87a773.tar.bz2 drakx-1014d6c5772017742b12dbe8b34653104a87a773.tar.xz drakx-1014d6c5772017742b12dbe8b34653104a87a773.zip |
use isCdNotEjectable.
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 7f09c6a98..6d48e82e1 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -554,7 +554,7 @@ sub chooseCD { my @mediumsDescr = (); my %mediumsDescr = (); - unless (grep { /ram3/ } cat_("/proc/mounts")) { + if (isCdNotEjectable()) { #- mono-cd in case of no ramdisk undef $packages->{mediums}{$_}{selected} foreach @mediums; log::l("low memory install, using single CD installation (as it is not ejectable)"); |