786da81b41
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28932 3c298f89-4303-0410-b956-a3cf2f4a3e73
41 lines
785 B
Bash
41 lines
785 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
START=60
|
|
STOP=60
|
|
|
|
SERVICE_USE_PID=1
|
|
|
|
NFS_D=/var/lib/nfs
|
|
LOCK_D=/var/lib/nfs/sm
|
|
|
|
start() {
|
|
grep -q /proc/fs/nfsd /proc/mounts || \
|
|
mount -t nfsd nfsd /proc/fs/nfsd
|
|
mkdir -p $NFS_D
|
|
mkdir -p $LOCK_D
|
|
touch $NFS_D/rmtab
|
|
|
|
sysctl -w fs.nfs.nlm_tcpport=32777 fs.nfs.nlm_udpport=32777 > /dev/null
|
|
service_start /usr/sbin/rpc.statd -p 32778 -o 32779
|
|
/usr/sbin/exportfs -r
|
|
/usr/sbin/rpc.nfsd
|
|
SERVICE_WRITE_PID=1 \
|
|
SERVICE_DAEMONIZE=1 \
|
|
service_start /usr/sbin/rpc.mountd -p 32780 -F
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/sbin/rpc.mountd
|
|
rpc.nfsd 0 2> /dev/null
|
|
/usr/sbin/exportfs -au
|
|
service_stop /usr/sbin/rpc.statd
|
|
grep -q /proc/fs/nfsd /proc/mounts && \
|
|
umount /proc/fs/nfsd
|
|
}
|
|
|
|
reload() {
|
|
/usr/sbin/exportfs -r
|
|
}
|
|
|