/etc/init.d/mbmon is in mbmon 2.05-6.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | #! /bin/sh
### BEGIN INIT INFO
# Provides: mbmon
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
### END INIT INFO
#
# 2005/06/17 Dustin Laurence (based on the Debian initscript for ntop)
#
# Run mbmon in daemon mode at startup for the benefit of e.g. gkrellm
NAME="mbmon"
DAEMON="/usr/bin/$NAME"
DESC="motherboard sensor monitoring daemon"
CFG="/etc/default/$NAME"
test -f $DAEMON || exit 0
if test -f $CFG ; then
. $CFG
else
# better change this in the /etc/default/mbmon file and leave this alone
MBMONPORT="411" # This port seems appropriate and unused
START_MBMON=0 # default is not to start the daemon
fi
test -n "$MBMONPORT" || exit 0
[ "$START_MBMON" -eq 1 ] || {
echo "Not starting ${DESC}."
echo "Edit ${CFG} if you want it to start automatically"
exit 0 ; }
case "$1" in
start)
echo -n "Starting $DESC: "
start-stop-daemon --start --quiet --name $NAME --exec $DAEMON -- \
-r -P $MBMONPORT
if ps xa | grep -v grep | grep $DAEMON > /dev/null ; then
echo $NAME
else
echo "$NAME not started."
fi
;;
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --stop --oknodo --name $NAME --exec $DAEMON --retry 9
if ps xa | grep -v grep | grep $DAEMON > /dev/null ; then
echo "$NAME not stopped. Need to kill manually."
else
echo $NAME
fi
;;
restart | force-reload)
$0 stop
sleep 2
$0 start
;;
reload)
if ps aux | grep -v grep | grep -q '$DAEMON' ; then
$0 stop
sleep 2
$0 start
fi
;;
*)
echo "Usage: $0 {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
|