From 62ca5f089c1c9bab86a512d3e841371ae90ba648 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 6 Jan 2009 13:38:05 +0000 Subject: (write_fstab) fix crashing on writing fstab when using SMB (#46084) [Backported from trunk] --- perl-install/NEWS | 1 + perl-install/fs.pm | 1 + 2 files changed, 2 insertions(+) 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}}; -- cgit v1.2.1