diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-17 07:16:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-17 07:16:19 +0000 |
commit | 02d308c52735fdfa9c03563147be562febfc1a3c (patch) | |
tree | d642a5f573f9b419bf8740319a80194d21a0cd26 /perl-install | |
parent | e3b0ced90d2bf7ce4c1b753d337b38f519781b44 (diff) | |
download | drakx-backup-do-not-use-02d308c52735fdfa9c03563147be562febfc1a3c.tar drakx-backup-do-not-use-02d308c52735fdfa9c03563147be562febfc1a3c.tar.gz drakx-backup-do-not-use-02d308c52735fdfa9c03563147be562febfc1a3c.tar.bz2 drakx-backup-do-not-use-02d308c52735fdfa9c03563147be562febfc1a3c.tar.xz drakx-backup-do-not-use-02d308c52735fdfa9c03563147be562febfc1a3c.zip |
ensure "defaults" mount option is set in fstab
(i could not reproduce the issue, but it's been reported on cooker, and it may
somehow occur if fs::mount_options::pack() is not used)
Diffstat (limited to 'perl-install')
-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 48ecc2822..e672d2c98 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -237,7 +237,7 @@ sub prepare_write_fstab { $new{$device} = 1; $new{$mntpoint} = 1; - my $options = $_->{options}; + my $options = $_->{options} || 'defaults'; if ($_->{fs_type} eq 'smbfs' && $options =~ /password=/ && !$b_keep_smb_credentials) { require fs::remote::smb; |