#!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { use logger } start() { modprobe ipmi_msghandler modprobe ipmi_devintf modprobe ipmi_si ebegin "Starting ipmievd" start-stop-daemon --start --pidfile /var/run/ipmievd.pid0 --exec /usr/sbin/ipmievd -- -I ${INTERFACE} ${OPTIONS} ${COMMAND} eend $? } stop() { ebegin "Stopping ipmievd" start-stop-daemon --stop --pidfile /var/run/ipmievd.pid0 eend $? }