overlay/sys-apps/micro-evtd/files/micro_evtd-default.initd
Mario Fetka bcaf6127ef sys-apps/micro-evtd: rename th upstream package name
(Portage version: 2.2.0_alpha78-r1/git/Linux x86_64, unsigned Manifest commit)
2011-12-07 06:27:01 +01:00

24 lines
532 B
Plaintext

#!/sbin/runscript
# Copyright 1999-2011 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 *
}
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 $?
}