26 lines
594 B
Plaintext
26 lines
594 B
Plaintext
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2008 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
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 --exec /usr/sbin/micro_evtd
|
||
|
/usr/sbin/micro_evtd
|
||
|
eend $?
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping ${description}"
|
||
|
start-stop-daemon --stop --exec /usr/sbin/micro_evtd
|
||
|
eend $?
|
||
|
}
|