iopsys-feed/statd/files/etc/init.d/statd
2015-06-15 21:57:39 +02:00

30 lines
227 B
Bash
Executable file

#!/bin/sh /etc/rc.common
. /lib/functions.sh
START=98
SERVICE_DAEMONIZE=1
SERVICE_WRITE_PID=1
boot() {
start
}
start() {
service_start /sbin/statd
}
stop() {
service_stop /sbin/statd
}
restart() {
stop
start
}