diff options
-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) |