packages: clean up the package folder
[openwrt.git] / package / system / mountd / files / mountd.init
1 #!/bin/sh /etc/rc.common
2
3 START=80
4
5 SERVICE_DAEMONIZE=1
6 SERVICE_WRITE_PID=1
7 SERVICE_PID_FILE=/var/run/mountd.pid
8
9 MOUNTD_BIN=/sbin/mountd
10
11 start()
12 {
13         service_start $MOUNTD_BIN -f
14 }
15
16 stop()
17 {
18         service_stop $MOUNTD_BIN
19 }