summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-08-18 22:46:30 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-08-18 22:46:30 +0000
commite4baffd98ca6ec03ad1942ab398abc78d9d73ec4 (patch)
tree922b111d2cdc8eb46f456327efb14d878109dde6 /perl-install
parent0daa4b4bf3073a6b8a470e0bf3be6744d71ae92e (diff)
downloaddrakx-backup-do-not-use-e4baffd98ca6ec03ad1942ab398abc78d9d73ec4.tar
drakx-backup-do-not-use-e4baffd98ca6ec03ad1942ab398abc78d9d73ec4.tar.gz
drakx-backup-do-not-use-e4baffd98ca6ec03ad1942ab398abc78d9d73ec4.tar.bz2
drakx-backup-do-not-use-e4baffd98ca6ec03ad1942ab398abc78d9d73ec4.tar.xz
drakx-backup-do-not-use-e4baffd98ca6ec03ad1942ab398abc78d9d73ec4.zip
oops, i inverted devfs=nomount and devfs=mount
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install_steps.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 9de250ba8..822ac3be4 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -873,7 +873,7 @@ sub miscellaneous {
local $_ = $o->{bootloader}{perImageAppend};
# do not use devfs with root software raid
- $_ .= ' devfs=' . (isRAID(fsedit::get_root($o->{fstab})) ? 'mount' : 'nomount') if !/devfs=/;
+ $_ .= ' devfs=' . (isRAID(fsedit::get_root($o->{fstab})) ? 'nomount' : 'mount') if !/devfs=/;
if ($o->{lnx4win} and !/mem=/) {
$_ .= ' mem=' . availableRamMB() . 'M';