blob: 6ca761f5e42f1d5ca6d6de216972e3b4e42ab730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
start() {
einfo "Start Mother Board Monitor"
mbmon \
-P ${MBMON_PORT} \
${MBMON_OPTS}
eend $?
}
stop() {
einfo "Stop Mother Board Monitor"
start-stop-daemon --stop --pidfile /var/run/mbmon.pid
local ret=$?
rm -f /var/run/mbmon.pid
eend ${ret}
}
|