diff options
author | neilbrown <neilbrown> | 1999-11-22 23:23:50 +0000 |
---|---|---|
committer | neilbrown <neilbrown> | 1999-11-22 23:23:50 +0000 |
commit | 024b5b69d39bfbeebd97736c78852ab79412c6a4 (patch) | |
tree | 6de754e5b2bde2c85fbd48f7c6becb9f81356568 | |
parent | a24504ade282e4f7e2dec379368a2fd41680f388 (diff) | |
download | nfs-utils-024b5b69d39bfbeebd97736c78852ab79412c6a4.tar.gz nfs-utils-024b5b69d39bfbeebd97736c78852ab79412c6a4.tar.xz nfs-utils-024b5b69d39bfbeebd97736c78852ab79412c6a4.zip |
moved exportfs -au after stopping nfsd to stop spurious
ESTALE errors on server shutdown.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | etc/redhat/nfs.init | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Tue Nov 23 10:21:34 EST 1999 Neil Brown <neilb@cse.unsw.edu.au> + * 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 <neilb@cse.unsw.edu.au> * 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) |