core/nfs-utils/nfs

27 lines
315 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
#!/bin/sh
#
# /etc/rc.d/nfs: start/stop nfs client
#
case $1 in
start)
2007-05-12 11:12:11 +02:00
/usr/sbin/sm-notify -q
2006-02-23 16:26:10 +01:00
/usr/sbin/rpc.statd
/bin/mount -a -t nfs
;;
stop)
/bin/umount -a -t nfs
killall -q /usr/sbin/rpc.statd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file