]> git.pld-linux.org Git - packages/apache.git/blobdiff - apache.init
- /home/httpd -> /home/services/httpd
[packages/apache.git] / apache.init
index 8c37e5358b7477fe719668f6b610d6b11ee3a602..ab6650488f31990a964c134e24fdd8daa43183c1 100644 (file)
@@ -28,10 +28,6 @@ if is_no "${NETWORKING}"; then
         exit 1
 fi
 
-if is_no "${IPV6_NETWORKING}"; then
-        HTTPD_OPTS="$HTTPD_OPTS -4"
-fi
-
 # See how we were called.
 case "$1" in
   start)
@@ -62,12 +58,17 @@ case "$1" in
        /usr/sbin/httpd -S
        exit $?
        ;;
-  restart|reload)
+  restart)
        $0 stop
        $0 start
        ;;
+   reload)
+       msg_reloading httpd
+       killproc httpd -HUP
+       RETVAL=$?
+       ;;
   *)
-       msg_usage "$0 {start|stop|restart|status}"
+       msg_usage "$0 {start|stop|restart|reload|status}"
        exit 1
        ;;
 esac
This page took 0.025155 seconds and 4 git commands to generate.