diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rwxr-xr-x | etc/redhat/nfs.init | 10 |
2 files changed, 10 insertions, 10 deletions
@@ -1,6 +1,12 @@ -2000-09-09 Jay Weber <jweber@valinux.com> +2000-05-18 H.J. Lu <hjl@lucon.org> - * added support for ext3 recognition in rquotad + * etc/redhat/nfs.init (restart): Just do stop and start. + +2000-05-09 Jay Weber <jweber@valinux.com> + + * utils/rquotad/hasquota.c: added support for ext3 recognition + in rquotad. + * utils/rquotad/mntent.h: Likewise. 2000-05-01 H.J. Lu <hjl@lucon.org> diff --git a/etc/redhat/nfs.init b/etc/redhat/nfs.init index 6da8e0c..d3eeab5 100755 --- a/etc/redhat/nfs.init +++ b/etc/redhat/nfs.init @@ -68,13 +68,8 @@ case "$1" in status rpc.rquotad ;; restart) - echo -n "Restarting NFS services: " - echo -n "rpc.mountd " - killproc rpc.mountd - daemon rpc.mountd $RPCMOUNTDOPTS - /usr/sbin/exportfs -r - touch /var/lock/subsys/nfs - echo "done." + $0 stop + $0 start ;; reload) /usr/sbin/exportfs -r @@ -99,4 +94,3 @@ case "$1" in esac exit 0 - |