http://bugzilla.novell.com/show_bug.cgi?id=623193 http://bugzilla.novell.com/show_bug.cgi?id=623193#c5 Larry Finger <Larry.Finger@lwfinger.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Larry.Finger@lwfinger.net --- Comment #5 from Larry Finger <Larry.Finger@lwfinger.net> 2010-08-15 18:13:27 UTC --- I had the problem when using wireless. At the time that /etc/init.d/nfs is called, only a wired connection will have been established. Issuing the 'mount -a' command causes the computer to hang for 3 minutes. I "fixed" the problem by doing the mounts in the background with the following patch: Index: init.d/nfs =================================================================== --- init.d.orig/nfs +++ init.d/nfs @@ -235,7 +235,7 @@ case "$1-$nfs" in # as if there are 'bg' mounts, we could get multiple copies # of them. So always 'settle' if there is any mounting to do. udevadm settle - mount -at nfs,nfs4 > /dev/null 2>&1 + mount -at nfs,nfs4 > /dev/null 2>&1 & fi # # generate new list of available shared libraries I do not understand the comment just above the line that changed. How is it possible to get multiple mounts running? If you do, what is the harm? Larry -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.