30 lines
636 B
Plaintext
Executable File
30 lines
636 B
Plaintext
Executable File
#!/sbin/runscript
|
|
|
|
DAEMON="snail-watcher.sh"
|
|
DAEMON_ARGS=""
|
|
PIDFILE=/var/run/snail.pid
|
|
PATH=$PATH:/usr/local/bin
|
|
|
|
depend() {
|
|
need localmount
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting ${SVCNAME}"
|
|
start-stop-daemon --make-pidfile \
|
|
--background \
|
|
--start \
|
|
--exec $DAEMON \
|
|
--pidfile $PIDFILE \
|
|
-- $DAEMON_ARGS
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping ${SVCNAME}"
|
|
start-stop-daemon --stop \
|
|
--exec $DAEMON \
|
|
--pidfile $PIDFILE
|
|
eend $?
|
|
}
|