diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-18 01:52:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-18 01:52:09 +0000 |
commit | 2d6f40c73b6ec610c43f7073bd2e12b0790387e2 (patch) | |
tree | 531cc78c0d37a19e67af10483cc6014ab9bb8fc8 /perl-install/fs.pm | |
parent | 38dea3d2412ecdbe2988f58b7ce7a905aff5fb10 (diff) | |
download | drakx-2d6f40c73b6ec610c43f7073bd2e12b0790387e2.tar drakx-2d6f40c73b6ec610c43f7073bd2e12b0790387e2.tar.gz drakx-2d6f40c73b6ec610c43f7073bd2e12b0790387e2.tar.bz2 drakx-2d6f40c73b6ec610c43f7073bd2e12b0790387e2.tar.xz drakx-2d6f40c73b6ec610c43f7073bd2e12b0790387e2.zip |
no_comment
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 1bf3293a1..87eb0c132 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -226,7 +226,7 @@ sub write_fstab($;$$) { unshift @to_add, map { my ($dir, $options, $freq, $passno) = qw(/dev/ defaults 0 0); - $options ||= $_->{options}; + $options = $_->{options} || $options; isExt2($_) and ($freq, $passno) = (1, ($_->{mntpoint} eq '/') ? 1 : 2); isNfs($_) and $dir = '', $options ||= 'ro,rsize=8192,wsize=8192'; |