aboutsummaryrefslogtreecommitdiffstats
path: root/package/mountd/files/mountd.init
blob: c294c50f5c8aefaca7b8b81a244875e0ca85e41c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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
}