From d1fb264b4341187f531f804b9c440040c3197137 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 7 Jun 2005 04:37:35 +0000 Subject: (mount) use 'soft' & 'intr' options for nfs mounts --- perl-install/fs.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/fs.pm b/perl-install/fs.pm index cb38f6419..1b8b16e32 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -509,7 +509,7 @@ sub mount { if ($fs eq 'vfat') { @mount_opt = 'check=relaxed'; } elsif ($fs eq 'nfs') { - push @mount_opt, 'nolock' if $::isInstall; + push @mount_opt, 'nolock', 'soft', 'intr' if $::isInstall; } elsif ($fs eq 'jfs' && !$b_rdonly) { fsck_jfs($dev, $o_wait_message); } elsif ($fs eq 'ext2' && !$b_rdonly) { -- cgit v1.2.1