[arch-commits] Commit in apache/repos (3 files)

Ionut Biru ibiru at archlinux.org
Sat Nov 7 22:58:13 UTC 2009


    Date: Saturday, November 7, 2009 @ 17:58:12
  Author: ibiru
Revision: 58443

Merged revisions 56846,58370-58371 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/apache/trunk

........
  r56846 | andrea | 2009-10-28 19:51:05 +0200 (Wed, 28 Oct 2009) | 1 line
  
  FS#16883
........
  r58370 | andrea | 2009-11-07 14:17:38 +0200 (Sat, 07 Nov 2009) | 1 line
  
  rewritten rc.d script, the previous restart gave DONE with a wrong http.conf (FS#16994)
........
  r58371 | andrea | 2009-11-07 14:22:43 +0200 (Sat, 07 Nov 2009) | 2 lines
  
  upgpkg: apache 2.2.14-2
      rewritten rc.d script, the previous restart gave DONE with a wrong http.conf (FS#16994)
........

Modified:
  apache/repos/extra-x86_64/	(properties)
  apache/repos/extra-x86_64/PKGBUILD
  apache/repos/extra-x86_64/httpd

----------+
 PKGBUILD |    4 ++--
 httpd    |   51 ++++++++++++++++++++++-----------------------------
 2 files changed, 24 insertions(+), 31 deletions(-)


Property changes on: apache/repos/extra-x86_64
___________________________________________________________________
Modified: svnmerge-integrated
   - /apache/trunk:1-53950
   + /apache/trunk:1-58442

Modified: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2009-11-07 22:52:55 UTC (rev 58442)
+++ extra-x86_64/PKGBUILD	2009-11-07 22:58:12 UTC (rev 58443)
@@ -4,7 +4,7 @@
 
 pkgname=apache
 pkgver=2.2.14
-pkgrel=1
+pkgrel=2
 pkgdesc='A high performance Unix-based HTTP server'
 arch=('i686' 'x86_64')
 options=('!libtool')
@@ -21,7 +21,7 @@
         'httpd.logrotate' 'httpd' 'arch.layout')
 md5sums=('a5226203aaf97e5b941c41a71c112704'
          'f4d627c64024c1b7b95efb5ffbaa625e'
-         'bddd84dafa770d74df1dc1f96bd71823'
+         '3fb8b616e0b5f0118420edd26d8536bb'
          '3d659d41276ba3bfcb20c231eb254e0c')
 
 build() {

Modified: extra-x86_64/httpd
===================================================================
--- extra-x86_64/httpd	2009-11-07 22:52:55 UTC (rev 58442)
+++ extra-x86_64/httpd	2009-11-07 22:58:12 UTC (rev 58443)
@@ -5,62 +5,55 @@
 . /etc/rc.conf
 . /etc/rc.d/functions
 
+APACHECTL=/usr/sbin/apachectl
 
 case "$1" in
   start)
-    stat_busy "Starting $daemon_name daemon"
-    # RUN
-    /usr/sbin/apachectl start &>/dev/null
-    #
-    if [ $? -gt 0 ]; then
-      stat_fail
-      exit 1
-    else
+    stat_busy "Starting Apache Web Server"
+    if $APACHECTL start &>/dev/null ; then
       add_daemon $daemon_name
       stat_done
+    else
+      stat_fail
+      exit 1
     fi
     ;;
 
   stop)
-    stat_busy "Stopping $daemon_name daemon"
-    # KILL
-    /usr/sbin/apachectl stop &>/dev/null
-    #
-    if [ $? -gt 0 ]; then
-      stat_fail
-      exit 1
-    else
+    stat_busy "Stopping Apache Web Server"
+    if $APACHECTL stop &>/dev/null ; then
       rm_daemon $daemon_name
       stat_done
+    else
+      stat_fail
+      exit 1
     fi
     ;;
 
   reload)
-    stat_busy "Reloading $daemon_name daemon"
-    /usr/sbin/apachectl graceful &>/dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-      exit 1
-    else
+    stat_busy "Reloading Apache Web Server"
+    if $APACHECTL graceful &>/dev/null ; then
       add_daemon $daemon_name
       stat_done
+    else
+      stat_fail
+      exit 1
     fi
     ;;
 
   restart)
-    stat_busy "Restarting $daemon_name daemon"
-    /usr/sbin/apachectl restart &>/dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-      exit 1
-    else
+    stat_busy "Restarting Apache Web Server"
+    if $APACHECTL restart &>/dev/null ; then
       add_daemon $daemon_name
       stat_done
+    else
+      stat_fail
+      exit 1
     fi
     ;;
 
   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