temper: Add init script before my n1200 melts.
authorTim 'timtim' Ellis <tim.ellis@foonas.org>
Fri, 23 Jan 2009 19:07:42 +0000 (19:07 +0000)
committerTim 'timtim' Ellis <tim.ellis@foonas.org>
Fri, 23 Jan 2009 19:07:42 +0000 (19:07 +0000)
packages/temper/files/init [new file with mode: 0644]
packages/temper/temper_0.0.1.bb

diff --git a/packages/temper/files/init b/packages/temper/files/init
new file mode 100644 (file)
index 0000000..a530720
--- /dev/null
@@ -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
index ce4bed0..2d6679d 100644 (file)
@@ -1,13 +1,19 @@
 DESCRIPTION = "A fan control script for the Thecus n1200 or n2100"
 SECTION = "console/network"
-PR = "r0"
+PR = "r1"
 LICENSE = "GPL"
 COMPATIBLE_MACHINE = "(n1200|n2100)"
 RDEPENDS = "hddtemp"
 
-SRC_URI = "file://temper"
+SRC_URI = "file://temper \
+           file://init"
+
+inherit update-rc.d
+
+INITSCRIPT_NAME = "temper"
+INITSCRIPT_PARAMS = "defaults"
 
 do_install() {
-       install -d ${D}/usr/sbin
        install -D -m 0755 ${WORKDIR}/temper ${D}/usr/sbin/temper
+       install -D -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/temper
 }