openwrtv3/package/system/mountd/files/mountd.init
John Crispin 4ebf19b48f packages: clean up the package folder
Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 37007
2013-06-21 16:54:37 +00:00

19 lines
219 B
Bash
Executable file

#!/bin/sh /etc/rc.common
START=80
SERVICE_DAEMONIZE=1
SERVICE_WRITE_PID=1
SERVICE_PID_FILE=/var/run/mountd.pid
MOUNTD_BIN=/sbin/mountd
start()
{
service_start $MOUNTD_BIN -f
}
stop()
{
service_stop $MOUNTD_BIN
}