You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
219 B
20 lines
219 B
15 years ago
|
#!/bin/sh /etc/rc.common
|
||
12 years ago
|
|
||
15 years ago
|
START=80
|
||
|
|
||
12 years ago
|
SERVICE_DAEMONIZE=1
|
||
|
SERVICE_WRITE_PID=1
|
||
|
SERVICE_PID_FILE=/var/run/mountd.pid
|
||
|
|
||
|
MOUNTD_BIN=/sbin/mountd
|
||
|
|
||
15 years ago
|
start()
|
||
|
{
|
||
12 years ago
|
service_start $MOUNTD_BIN -f
|
||
15 years ago
|
}
|
||
|
|
||
|
stop()
|
||
|
{
|
||
12 years ago
|
service_stop $MOUNTD_BIN
|
||
15 years ago
|
}
|