Commit b5d1d2b0 authored by "Steven J. Hill"'s avatar "Steven J. Hill"
Browse files

Fix script so that 'restart' actually works.

parent 1f928311
Loading
Loading
Loading
Loading
+13 −5
Original line number Diff line number Diff line
@@ -21,9 +21,7 @@ touch /var/lib/nfs/rmtab
touch /var/lib/nfs/state
touch /var/lib/nfs/xtab

# See how we were called.
case "$1" in
  start)
start() {
	# Start daemons.
	echo -n "Starting NFS statd: "
	rpc.statd
@@ -43,8 +41,9 @@ case "$1" in
	rpc.mountd
	echo "done"
	touch /var/lock/subsys/nfs
	;;
  stop)
}

stop() {
	# Stop daemons.
	echo -n "Shutting down NFS mountd: "
	killall -q rpc.mountd
@@ -64,6 +63,15 @@ case "$1" in
	killall -q rpc.statd
	echo "done"
	rm -f /var/lock/subsys/nfslock
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  restart)
	stop