]> git.pld-linux.org Git - packages/apache1.git/commitdiff
- use nice service names
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 8 Dec 2008 10:19:56 +0000 (10:19 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache1.init -> 1.30

apache1.init

index 5503f205ff94d83ec1753675060c2507e3849968..8fda4d0c74764c3a91b1a04fac27f0739f8c8630 100644 (file)
@@ -22,7 +22,7 @@
 # Check that networking is up.
 if is_yes "${NETWORKING}"; then
        if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
-               msg_network_down apache
+               msg_network_down "Apache 1.3 Web Server"
                exit 1
        fi
 else
@@ -42,40 +42,40 @@ start() {
        # Check if the service is already running?
        if [ -x /usr/lib/apache1/lingerd ]; then
                if [ ! -f /var/lock/subsys/lingerd ]; then
-                       msg_starting lingerd
+                       msg_starting "Apache Lingerd"
                        SERVICE_UMASK=002 daemon --user http /usr/lib/apache1/lingerd
                        RETVAL=$?
                        [ $RETVAL -eq 0 ] && touch /var/lock/subsys/lingerd
                else
-                       msg_already_running lingerd
+                       msg_already_running "Apache Lingerd"
                fi
        fi
        if [ ! -f /var/lock/subsys/apache ]; then
-               msg_starting apache
+               msg_starting "Apache 1.3 Web Server"
                daemon /usr/sbin/apache $HTTPD_OPTS
                RETVAL=$?
                [ $RETVAL -eq 0 ] && touch /var/lock/subsys/apache
        else
-               msg_already_running apache
+               msg_already_running "Apache 1.3 Web Server"
        fi
 }
 
 stop() {
        # Stop daemons.
        if [ -f /var/lock/subsys/apache ]; then
-               msg_stopping apache
+               msg_stopping "Apache 1.3 Web Server"
                killproc --pidfile /var/run/apache.pid apache
                rm -f /var/lock/subsys/apache /var/run/apache.pid /var/run/apache.loc* >/dev/null 2>&1
        else
-               msg_not_running apache
+               msg_not_running "Apache 1.3 Web Server"
        fi
        if [ -x /usr/lib/apache1/lingerd ]; then
                if [ -f /var/lock/subsys/lingerd ]; then
-                       msg_stopping lingerd
+                       msg_stopping "Apache Lingerd"
                        /usr/lib/apache1/lingerd -k && ok || fail
                        rm -f /var/lock/subsys/lingerd >/dev/null 2>&1
                else
-                       msg_not_running lingerd
+                       msg_not_running "Apache Lingerd"
                fi
        fi
 }
@@ -95,7 +95,7 @@ reload() {
        local sig=${1:-HUP}
        local retnr=${2:-7}
        if [ -f /var/lock/subsys/apache ]; then
-               msg_reloading apache
+               msg_reloading "Apache 1.3 Web Server"
 
                configtest
                if [ $RETVAL -eq 0 ]; then
@@ -106,7 +106,7 @@ reload() {
                        echo >&2 "Configuration file syntax test failed. Run $0 configtest to see errors."
                fi
        else
-               msg_not_running apache
+               msg_not_running "Apache 1.3 Web Server"
                RETVAL=$retnr
        fi
 }
@@ -127,7 +127,7 @@ case "$1" in
        if [ -f /var/lock/subsys/apache ]; then
                restart
        else
-               msg_not_running apache
+               msg_not_running "Apache 1.3 Web Server"
        fi
        ;;
   force-reload)
This page took 0.037447 seconds and 4 git commands to generate.