]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/commitdiff
add config-dir for apcupsd
authorPeter Pfeiffer <peterman@ipfire.org>
Sun, 6 Sep 2009 10:21:40 +0000 (12:21 +0200)
committerPeter Pfeiffer <peterman@ipfire.org>
Sun, 6 Sep 2009 10:21:40 +0000 (12:21 +0200)
config/apcupsd/apcupsd [new file with mode: 0644]

diff --git a/config/apcupsd/apcupsd b/config/apcupsd/apcupsd
new file mode 100644 (file)
index 0000000..e5923c5
--- /dev/null
@@ -0,0 +1,28 @@
+#!/bin/sh
+# Begin $rc_base/init.d/apcupsd
+
+# Based on sysklogd script from LFS-3.1 and earlier.
+
+. /etc/sysconfig/rc
+. $rc_functions
+
+case "$1" in
+       start)
+               boot_mesg "Starting apcupsd daemon..."
+               loadproc apcupsd
+               ;;
+       stop)
+               boot_mesg "Stopping apcupsd daemon..."
+               killproc apcupsd
+               ;;
+       status)
+               statusproc /sbin/apcupsd
+               ;;
+       *)
+               echo "Usage: $0 (start|stop|status)"
+               exit 1
+               ;;
+esac
+
+# End $rc_base/init.d/apcupsd
+