From: neilbrown Date: Mon, 22 Nov 1999 23:23:50 +0000 (+0000) Subject: moved exportfs -au after stopping nfsd to stop spurious X-Git-Tag: nfs-utils-0-1-3~3 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=024b5b69d39bfbeebd97736c78852ab79412c6a4 moved exportfs -au after stopping nfsd to stop spurious ESTALE errors on server shutdown. --- diff --git a/ChangeLog b/ChangeLog index 7b4c10f..823ea42 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Nov 23 10:21:34 EST 1999 Neil Brown + * etc/redhat/nfsd.init (stop) : moved exportfs -ua after stopping + nfsd to stop spurious ESTALE on server shutdown. + Tue Nov 23 10:13:39 1999 Neil Brown * support/nfs/exports.c (parseopts): make copy of opt string before diff --git a/etc/redhat/nfs.init b/etc/redhat/nfs.init index 6da8e0c..687b199 100755 --- a/etc/redhat/nfs.init +++ b/etc/redhat/nfs.init @@ -50,7 +50,6 @@ case "$1" in ;; stop) # Stop daemons. - action "Shutting down NFS services: " /usr/sbin/exportfs -au echo -n "Shutting down NFS mountd: " killproc rpc.mountd echo @@ -60,6 +59,7 @@ case "$1" in echo -n "Shutting down NFS quotas: " killproc rpc.rquotad echo + action "Shutting down NFS services: " /usr/sbin/exportfs -au rm -f /var/lock/subsys/nfs ;; status)