You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/ipmitool/files/ipmitool-1.8.9-ipmievd.initd

25 lines
584 B

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