]> git.pld-linux.org Git - packages/autolog.git/commitdiff
- LSB compliance
authorankry <ankry@pld-linux.org>
Sat, 17 May 2003 21:03:35 +0000 (21:03 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    autolog.init -> 1.6

autolog.init

index 869dc8c304f64599a501c7d13222426878e4f0fb..61c07b96c76f8f34715907df83a2702a94aae3d0 100755 (executable)
@@ -11,6 +11,7 @@
 # Source function library
 . /etc/rc.d/init.d/functions
 
+RETVAL=0
 # See how we were called.
 case "$1" in
   start)
@@ -21,7 +22,6 @@ case "$1" in
                [ $RETVAL -eq 0 ] && touch /var/lock/subsys/autolog
        else
                msg_already_running "Autolog"
-               exit 1
        fi
        ;;
   stop)
@@ -31,19 +31,20 @@ case "$1" in
                rm -f /var/lock/subsys/autolog >/dev/null 2>&1
        else
                msg_not_running "Autolog"
-               exit 1
        fi
        ;;
-  restart|reload)
+  restart|force-reload)
        $0 stop
        $0 start
+       exit $?
        ;;
   status)
        status autolog
+       exit $?
        ;;
   *)
-       msg_usage "$0 {start|stop|restart|reload|status}"
-       exit 1
+       msg_usage "$0 {start|stop|restart|force-reload|status}"
+       exit 3
 esac
 
 exit $RETVAL
This page took 0.089131 seconds and 4 git commands to generate.