lars 1fbbfaa4cb [packages] Use the correct method for stoping the nfsd kernel threads in the
init script.
Thanks to Peter Wagner


git-svn-id: svn://svn.openwrt.org/openwrt/packages@19563 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-02-09 00:12:21 +00:00

32 lines
438 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=60
STOP=60
NFS_D=/var/lib/nfs
LOCK_D=/var/lib/nfs/sm
start() {
mkdir -p $NFS_D
mkdir -p $LOCK_D
touch $NFS_D/rmtab
/usr/sbin/rpc.statd
/usr/sbin/exportfs -r
/usr/sbin/rpc.nfsd
/usr/sbin/rpc.mountd
}
stop() {
killall rpc.mountd 2> /dev/null
rpc.nfsd 0 2> /dev/null
/usr/sbin/exportfs -au
killall rpc.statd 2> /dev/null
}
reload() {
/usr/sbin/exportfs -r
}