]> git.pld-linux.org Git - packages/autolog.git/commitdiff
autolog.init
authorTomek Orzechowski <orzech@pld-linux.org>
Sun, 21 Oct 2001 21:28:41 +0000 (21:28 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    autolog.init -> 1.1

autolog.init [new file with mode: 0755]

diff --git a/autolog.init b/autolog.init
new file mode 100755 (executable)
index 0000000..60de006
--- /dev/null
@@ -0,0 +1,49 @@
+#! /bin/sh
+#
+# chkconfig:   2345 85 15
+#
+# description: autolog
+#
+# processname: autolog
+# pidfile:     /var/run/autolog.pid
+# config:      /etc/autolog.conf
+
+# Source function library
+. /etc/rc.d/init.d/functions
+
+# See how we were called.
+case "$1" in
+  start)
+       if [ ! -f /var/lock/subsys/autolog ]; then
+               msg_starting "Autolog"
+               daemon autolog
+               RETVAL=$?
+               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/autolog
+       else
+               msg_Already_Running "Autolog"
+               exit 1
+       fi
+       ;;
+  stop)
+       if [ -f /var/lock/subsys/autolog ]; then
+               msg_stopping "Autolog"
+               killproc autolog
+               rm -f /var/lock/subsys/autolog >/dev/null 2>&1
+       else
+               msg_Not_Running "Autolog"
+               exit 1
+       fi
+       ;;
+  restart)
+       $0 stop
+       $0 start
+       ;;
+  status)
+       status autolog
+       ;;
+    *)
+       echo "Usage: $0 {start|stop|status|restart}"
+       exit 1
+esac
+
+exit $RETVAL
This page took 0.084828 seconds and 4 git commands to generate.