48 lines
1.0 KiB
Bash
48 lines
1.0 KiB
Bash
|
|
#!/bin/sh
|
||
|
|
### BEGIN INIT INFO
|
||
|
|
# Provides: fancontrol
|
||
|
|
# Required-Start: $local_fs
|
||
|
|
# Should-Start:
|
||
|
|
# Required-Stop: $local_fs
|
||
|
|
# Should-Stop:
|
||
|
|
# Default-Start: 2 3 4 5
|
||
|
|
# Default-Stop: 0 1 6
|
||
|
|
# Short-Description: fancontrol initscript
|
||
|
|
# Description: Starts and controls the fancontrol daemon
|
||
|
|
### END INIT INFO
|
||
|
|
|
||
|
|
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
||
|
|
|
||
|
|
DESC="fan control daemon"
|
||
|
|
NAME="fancontrol"
|
||
|
|
FANCONTROL=`which $NAME`
|
||
|
|
PIDFILE="/var/run/fancontrol.pid"
|
||
|
|
|
||
|
|
# Exit if the package is not installed
|
||
|
|
[ -x "$FANCONTROL" ] || exit 0
|
||
|
|
|
||
|
|
case "$1" in
|
||
|
|
start)
|
||
|
|
echo -n "Starting $DESC: $NAME... "
|
||
|
|
start-stop-daemon -S -p $PIDFILE -b -x $FANCONTROL
|
||
|
|
echo "done."
|
||
|
|
;;
|
||
|
|
stop)
|
||
|
|
echo -n "Stopping $DESC: $NAME... "
|
||
|
|
start-stop-daemon -K -p $PIDFILE
|
||
|
|
echo "done."
|
||
|
|
;;
|
||
|
|
restart)
|
||
|
|
echo "Restarting $DESC: $NAME... "
|
||
|
|
$0 stop
|
||
|
|
$0 start
|
||
|
|
echo "done."
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
echo "Usage: $0 {start|stop|restart}"
|
||
|
|
exit 1
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
|
||
|
|
exit 0
|