]> git.pld-linux.org Git - packages/apache.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:
    apache.init -> 1.15
    apache1.init -> 1.4

apache.init
apache1.init

index d5eb0f1f62b9caae333afb3e8a9c81127e0f97ec..124535f48a39f5fd8e7fe33fa7801c7a4e711e7b 100644 (file)
@@ -32,6 +32,7 @@ else
        exit 0
 fi
 
+RETVAL=0
 # See how we were called.
 case "$1" in
   start)
@@ -43,7 +44,6 @@ case "$1" in
                [ $RETVAL -eq 0 ] && touch /var/lock/subsys/httpd
        else
                msg_already_running httpd
-               exit 1
        fi
        ;;
   stop)
@@ -54,26 +54,31 @@ case "$1" in
                rm -f /var/lock/subsys/httpd /var/run/httpd.pid /var/run/httpd.loc* >/dev/null 2>&1
        else
                msg_not_running httpd
-               exit 1
        fi
        ;;
   status)
        status httpd
+       RETVAL $?
        /usr/sbin/httpd -S
-       exit $?
        ;;
   restart)
        $0 stop
        $0 start
+       exit $?
        ;;
-  reload)
-       msg_reloading httpd
-       killproc httpd -HUP
-       RETVAL=$?
+  reload|force-reload)
+       if [ -f /var/lock/subsys/httpd ]; then
+               msg_reloading httpd
+               killproc httpd -HUP
+               RETVAL=$?
+       else
+               msg_not_running httpd >&2
+               RETVAL=7
+       fi
        ;;
   *)
-       msg_usage "$0 {start|stop|restart|reload|status}"
-       exit 1
+       msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
+       exit 3
        ;;
 esac
 
index d659c0c242bc25dbbe012e5bfa89171528b2373c..20047ddf7da6eae60d3461a0ca9e1b5c54ad370d 100644 (file)
@@ -34,6 +34,7 @@ if is_no "${IPV6_NETWORKING}"; then
        HTTPD_OPTS="$HTTPD_OPTS -4"
 fi
 
+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/httpd
        else
                msg_already_running httpd
-               exit 1
        fi
        ;;
   stop)
@@ -56,21 +56,21 @@ case "$1" in
                rm -f /var/lock/subsys/httpd /var/run/httpd.pid /var/run/httpd.loc* >/dev/null 2>&1
        else
                msg_not_running httpd
-               exit 1
        fi
        ;;
   status)
        status httpd
+       RETVAL=$?
        /usr/sbin/httpd -S
-       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
 
This page took 0.074926 seconds and 4 git commands to generate.