diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-10 11:26:20 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-10 11:26:20 +0000 |
commit | aecbd70fe871e1d908e7e3c5d4d497ad3bf572ba (patch) | |
tree | ad4c3e57f4320026579eb2c1160618d2d7f4eac2 /perl-install/fs.pm | |
parent | 4c19e8d45e5018145ef0b2a3d797ab1bdb334b0c (diff) | |
download | drakx-aecbd70fe871e1d908e7e3c5d4d497ad3bf572ba.tar drakx-aecbd70fe871e1d908e7e3c5d4d497ad3bf572ba.tar.gz drakx-aecbd70fe871e1d908e7e3c5d4d497ad3bf572ba.tar.bz2 drakx-aecbd70fe871e1d908e7e3c5d4d497ad3bf572ba.tar.xz drakx-aecbd70fe871e1d908e7e3c5d4d497ad3bf572ba.zip |
- library: have "defaults" mount option instead of empty string (for rescue)
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 23c7547e9..48ecc2822 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -253,7 +253,7 @@ sub prepare_write_fstab { my $file_dep = $options =~ /\b(loop|bind)\b/ ? $device : ''; - [ $file_dep, $mntpoint, $comment . join(' ', $device, $mntpoint, $fs_type, $options || 'defaults', $freq, $passno) . "\n" ]; + [ $file_dep, $mntpoint, $comment . join(' ', $device, $mntpoint, $fs_type, $options, $freq, $passno) . "\n" ]; } else { (); } |