mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
25 lines
712 B
Text
25 lines
712 B
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2007 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ipmitool/files/ipmitool-1.8.9-ipmievd.initd,v 1.1 2007/09/23 06:03:42 robbat2 Exp $
|
|
# /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 $?
|
|
}
|