[arch-commits] Commit in apache/trunk (httpd)

Andrea Scarpino andrea at archlinux.org
Wed Oct 28 17:51:05 UTC 2009


    Date: Wednesday, October 28, 2009 @ 13:51:05
  Author: andrea
Revision: 56846

FS#16883

Modified:
  apache/trunk/httpd

-------+
 httpd |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: httpd
===================================================================
--- httpd	2009-10-28 17:12:15 UTC (rev 56845)
+++ httpd	2009-10-28 17:51:05 UTC (rev 56846)
@@ -8,7 +8,7 @@
 
 case "$1" in
   start)
-    stat_busy "Starting $daemon_name daemon"
+    stat_busy "Starting Apache Web Server"
     # RUN
     /usr/sbin/apachectl start &>/dev/null
     #
@@ -22,7 +22,7 @@
     ;;
 
   stop)
-    stat_busy "Stopping $daemon_name daemon"
+    stat_busy "Stopping Apache Web Server"
     # KILL
     /usr/sbin/apachectl stop &>/dev/null
     #
@@ -36,7 +36,7 @@
     ;;
 
   reload)
-    stat_busy "Reloading $daemon_name daemon"
+    stat_busy "Reloading Apache Web Server"
     /usr/sbin/apachectl graceful &>/dev/null
     if [ $? -gt 0 ]; then
       stat_fail
@@ -48,7 +48,7 @@
     ;;
 
   restart)
-    stat_busy "Restarting $daemon_name daemon"
+    stat_busy "Restarting Apache Web Server"
     /usr/sbin/apachectl restart &>/dev/null
     if [ $? -gt 0 ]; then
       stat_fail
@@ -60,7 +60,7 @@
     ;;
 
   status)
-    stat_busy "Checking $daemon_name status";
+    stat_busy "Checking Apache Web Server status";
     ck_status $daemon_name
     ;;
 




More information about the arch-commits mailing list