15 lines
202 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
start() {
/usr/sbin/portmap
/usr/sbin/rpc.mountd -r
/usr/sbin/rpc.nfsd
}
stop() {
killall rpc.nfsd
killall rpc.mountd
killall portmap
}