diff options
Diffstat (limited to 'recipes/temper/files/init')
-rw-r--r-- | recipes/temper/files/init | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes/temper/files/init b/recipes/temper/files/init new file mode 100644 index 0000000000..a5307205cb --- /dev/null +++ b/recipes/temper/files/init @@ -0,0 +1,32 @@ +#! /bin/sh +# temper - simple init.d temper fan control script - tim.ellis@foonas.org +set -e + +if [ ! -f /usr/sbin/temper ]; then + echo -n "Warning: temper fan control script not found. Shutting down" + shutdown -h now + exit -1 +fi + +case "$1" in + start) + echo -n "Starting temper: " + start-stop-daemon -S -b -n temper -a /usr/sbin/temper + echo "done" + ;; + stop) + echo -n "Stopping temper: " + start-stop-daemon -K -n temper >&- 2>&- & + echo "done" + ;; + restart) + $0 stop + $0 start + ;; + *) + echo "Usage: temper { start | stop | restart }" >&2 + exit 1 + ;; +esac + +exit 0 |