overlay/sys-apps/micro_evtd/files/micro_evtd-default.initd
2010-10-31 01:07:13 +00:00

24 lines
536 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 micro_evtd-boot
after local
}
start() {
ebegin "Starting ${description} final tasks"
# signalize we're up & running
/usr/sbin/microapl -a bz_imhere 120 am4 d4 f4 am4 d4 f4 dm4 dm4 f4 a4 am4 &>/dev/null
eend $?
}
stop() {
ebegin "Stopping ${description} final tasks"
eend $?
}