]> git.pld-linux.org Git - packages/apache.git/commitdiff
- updated msg_ function names (to lower case)
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 23 Jan 2002 22:33:19 +0000 (22:33 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache.init -> 1.9

apache.init

index 366dec223a38140c23d61417697ae7e1125cfaf7..881652b4ebe3880c8fdc23ce1c8ccd4895c639cf 100644 (file)
@@ -24,7 +24,7 @@
 # Check that networking is up.
 if is_no "${NETWORKING}"; then
         # nls "ERROR: Networking is down. %s can't be run." <service>
-        msg_Network_Down httpd
+        msg_network_down httpd
         exit 1
 fi
 
@@ -42,7 +42,7 @@ case "$1" in
                RETVAL=$?
                [ $RETVAL -eq 0 ] && touch /var/lock/subsys/httpd
        else
-               msg_Already_Running httpd
+               msg_already_running httpd
                exit 1
        fi
        ;;
@@ -53,7 +53,7 @@ case "$1" in
                 killproc httpd
                 rm -f /var/lock/subsys/httpd /var/run/httpd.pid /var/run/httpd.loc* >/dev/null 2>&1
         else
-               msg_Not_Running httpd
+               msg_not_running httpd
                exit 1
        fi
        ;;
@@ -67,7 +67,7 @@ case "$1" in
        $0 start
        ;;
   *)
-       msg_Usage "$0 {start|stop|restart|status}"
+       msg_usage "$0 {start|stop|restart|status}"
        exit 1
        ;;
 esac
This page took 0.164268 seconds and 4 git commands to generate.