diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-07-26 23:07:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-07-26 23:07:09 +0000 |
commit | e3adc97309fa31baedbc2b0373d7c4f858b0a788 (patch) | |
tree | 9ecadba18e0568b3523e9405b916f853d9f48143 /perl-install/install_steps_interactive.pm | |
parent | d297fd0dbc378b35a7f085fa2f92097f3dfdaed6 (diff) | |
download | drakx-e3adc97309fa31baedbc2b0373d7c4f858b0a788.tar drakx-e3adc97309fa31baedbc2b0373d7c4f858b0a788.tar.gz drakx-e3adc97309fa31baedbc2b0373d7c4f858b0a788.tar.bz2 drakx-e3adc97309fa31baedbc2b0373d7c4f858b0a788.tar.xz drakx-e3adc97309fa31baedbc2b0373d7c4f858b0a788.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 2ae0d2f4c..612a70333 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -359,6 +359,12 @@ sub chooseCD { my @mediumsDescr = (); my %mediumsDescr = (); + unless (grep { /ram3/ } cat_("/proc/mounts")) { + #- mono-cd in case of no ramdisk + undef $packages->[2]{$_}{selected} foreach @mediums; + return; + } + #- if no other medium available or a poor beginner, we are choosing for him! #- note first CD is always selected and should not be unselected! return if scalar(@mediums) == 0 || $::beginner; |