summaryrefslogtreecommitdiff
path: root/www/apache2/files/patch-ak
blob: 09c3852d49fa457e251106cf002c9438f1c15e36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--- src/support/apachectl.orig	Tue Feb  9 21:00:34 1999
+++ src/support/apachectl	Fri Mar 26 00:08:20 1999
@@ -39,6 +39,8 @@
 # --------------------                              --------------------
 # ||||||||||||||||||||   END CONFIGURATION SECTION  ||||||||||||||||||||
 
+eval `limits -e -C daemon` >/dev/null 2>&1
+
 ERROR=0
 ARGV="$@"
 if [ "x$ARGV" = "x" ] ; then 
@@ -50,7 +52,7 @@
     # check for pidfile
     if [ -f $PIDFILE ] ; then
 	PID=`cat $PIDFILE`
-	if [ ! "x$PID" = "x" ] && kill -0 $PID; then
+	if [ ! "x$PID" = "x" ] && kill -0 $PID > /dev/null 2>&1; then
 	    STATUS="httpd (pid $PID) running"
 	    RUNNING=1
 	else
@@ -82,6 +84,7 @@
 	fi
 	if kill $PID ; then
 	    echo "$0 $ARG: httpd stopped"
+	    rm $PIDFILE
 	else
 	    echo "$0 $ARG: httpd could not be stopped"
 	    ERROR=4