2006-10-04 20:57:49 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2007-05-10 10:38:53 +00:00
|
|
|
START=50
|
2010-01-30 18:12:57 +00:00
|
|
|
STOP=50
|
2006-10-04 20:57:49 +00:00
|
|
|
|
|
|
|
start() {
|
|
|
|
/usr/sbin/portmap
|
|
|
|
/usr/sbin/rpc.mountd -r
|
|
|
|
/usr/sbin/rpc.nfsd
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
killall rpc.nfsd
|
|
|
|
killall rpc.mountd
|
|
|
|
killall portmap
|
|
|
|
}
|