29 lines
660 B
Plaintext
29 lines
660 B
Plaintext
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2011 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
PIDFILE=/var/run/micro-evtd.pid
|
||
|
|
||
|
description="Linkstation/Kurobox/Terastation micro controller daemon"
|
||
|
|
||
|
depend() {
|
||
|
need localmount
|
||
|
use logger
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
# micro_evtd doesn't start properly from s-s-d, need to investigate
|
||
|
ebegin "Starting ${description}"
|
||
|
start-stop-daemon --start --quiet --pidfile "${PIDFILE}" --exec /usr/sbin/micro-evtd
|
||
|
#/usr/sbin/micro-evtd
|
||
|
eend $?
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping ${description}"
|
||
|
start-stop-daemon --stop --quiet --pidfile "${PIDFILE}" --exec /usr/sbin/micro-evtd
|
||
|
eend $?
|
||
|
}
|
||
|
|