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

Andrea Scarpino andrea at archlinux.org
Sat Nov 7 12:22:44 UTC 2009


    Date: Saturday, November 7, 2009 @ 07:22:43
  Author: andrea
Revision: 58371

upgpkg: apache 2.2.14-2
    rewritten rc.d script, the previous restart gave DONE with a wrong http.conf (FS#16994)

Modified:
  apache/trunk/PKGBUILD
  apache/trunk/httpd

----------+
 PKGBUILD |    2 +-
 httpd    |   10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2009-11-07 12:17:38 UTC (rev 58370)
+++ PKGBUILD	2009-11-07 12:22:43 UTC (rev 58371)
@@ -21,7 +21,7 @@
         'httpd.logrotate' 'httpd' 'arch.layout')
 md5sums=('a5226203aaf97e5b941c41a71c112704'
          'f4d627c64024c1b7b95efb5ffbaa625e'
-         'a2f8d78b622384783fca8388931397fa'
+         '3fb8b616e0b5f0118420edd26d8536bb'
          '3d659d41276ba3bfcb20c231eb254e0c')
 
 build() {

Modified: httpd
===================================================================
--- httpd	2009-11-07 12:17:38 UTC (rev 58370)
+++ httpd	2009-11-07 12:22:43 UTC (rev 58371)
@@ -9,7 +9,7 @@
 
 case "$1" in
   start)
-    stat_busy "Starting $daemon_name daemon"
+    stat_busy "Starting Apache Web Server"
     if $APACHECTL start &>/dev/null ; then
       add_daemon $daemon_name
       stat_done
@@ -20,7 +20,7 @@
     ;;
 
   stop)
-    stat_busy "Stopping $daemon_name daemon"
+    stat_busy "Stopping Apache Web Server"
     if $APACHECTL stop &>/dev/null ; then
       rm_daemon $daemon_name
       stat_done
@@ -31,7 +31,7 @@
     ;;
 
   reload)
-    stat_busy "Reloading $daemon_name daemon"
+    stat_busy "Reloading Apache Web Server"
     if $APACHECTL graceful &>/dev/null ; then
       add_daemon $daemon_name
       stat_done
@@ -42,7 +42,7 @@
     ;;
 
   restart)
-    stat_busy "Restarting $daemon_name daemon"
+    stat_busy "Restarting Apache Web Server"
     if $APACHECTL restart &>/dev/null ; then
       add_daemon $daemon_name
       stat_done
@@ -53,7 +53,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