diff options
author | Aurélien Lefebvre <alefebvre@mandriva.com> | 2009-08-17 12:51:59 +0000 |
---|---|---|
committer | Aurélien Lefebvre <alefebvre@mandriva.com> | 2009-08-17 12:51:59 +0000 |
commit | e1c5622998ca97b88d502f3cf0659d46b34a1217 (patch) | |
tree | ed1570004b841181e780310974e7c2b2aa3a7b64 /perl-install/fs.pm | |
parent | 178a5b2b34a1fb642740b51ae8b042b6e20a2231 (diff) | |
download | drakx-e1c5622998ca97b88d502f3cf0659d46b34a1217.tar drakx-e1c5622998ca97b88d502f3cf0659d46b34a1217.tar.gz drakx-e1c5622998ca97b88d502f3cf0659d46b34a1217.tar.bz2 drakx-e1c5622998ca97b88d502f3cf0659d46b34a1217.tar.xz drakx-e1c5622998ca97b88d502f3cf0659d46b34a1217.zip |
- diskdrake : when user does not specify user/pass with davfs2, fallback to nobody/nobody
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 61947c0a8..535769d22 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -253,7 +253,7 @@ sub prepare_write_fstab { $options = $opts; push @smb_credentials, $smb_credentials; } - } elsif ($_->{fs_type} eq 'davfs2' && $options =~ /password=/ && !$b_keep_credentials) { + } elsif ($_->{fs_type} eq 'davfs2' && !$b_keep_credentials) { require fs::remote::davfs; if (my ($opts, $davfs_credentials) = fs::remote::davfs::fstab_entry_to_credentials($_)) { $options = $opts || 'defaults'; |