#!/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 $?
}