summaryrefslogtreecommitdiff
blob: 256238ef5e2c95a0773191c096ba30f439539fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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 $?
}