summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/fs.pm1
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index adbfc01a3..97b8e85f4 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,4 +1,5 @@
- diskdrake:
+ o fix crashing on writing fstab when using SMB (#46084)
o --nfs: handle "host:/" (#44320)
Version 11.71.2 - 5 December 2008
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 4fc6fa7a2..2ecc946e2 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -306,6 +306,7 @@ sub write_fstab {
my ($s, $smb_credentials, $davfs_credentials) = prepare_write_fstab($fstab, $o_prefix, '');
renamef("$o_prefix/etc/fstab", "$o_prefix/etc/fstab.old");
output("$o_prefix/etc/fstab", $s);
+ require fs::remote::davfs;
fs::remote::smb::save_credentials($_) foreach @$smb_credentials;
fs::remote::davfs::save_credentials($davfs_credentials);
fs::dmcrypt::save_crypttab($all_hds) if @{$all_hds->{dmcrypts}};