]> git.pld-linux.org Git - packages/LPRng.git/commitdiff
- LSB conformance
authorankry <ankry@pld-linux.org>
Fri, 23 May 2003 22:18:49 +0000 (22:18 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    lpd.init -> 1.8

lpd.init

index 920dfb0aa3e5b1ef5e09af961fe9e8c01c234684..a63c903db219684081c03846d39a74ec251c7c67 100644 (file)
--- a/lpd.init
+++ b/lpd.init
@@ -34,6 +34,7 @@ fi
 # Sanity check
 [ -f /etc/printcap ] || exit 1
 
+RETVAL=0
 # See how we were called.
 case "$1" in
   start)
@@ -45,7 +46,6 @@ case "$1" in
                [ $RETVAL -eq 0 ] && touch /var/lock/subsys/lpd
        else
                msg_already_running Lpd
-               exit 1
        fi
        ;;
   stop)
@@ -56,20 +56,20 @@ case "$1" in
                rm -f /var/lock/subsys/lpd >/dev/null 2>&1
        else
                msg_not_running Lpd
-               exit 1
        fi
        ;;
   status)
        status lpd
        exit $?
        ;;
-  restart|reload)
+  restart|force-reload)
        $0 stop
        $0 start
+       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.033388 seconds and 4 git commands to generate.