summaryrefslogtreecommitdiff
path: root/www/apache21/files/patch-ak
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-02-14 10:41:19 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-02-14 10:41:19 +0000
commitce5da22b7076167a515a6a0b602b22b67022e5ff (patch)
tree2de75577a4acfc9897ffb9ed4f14f84b6bf1ef54 /www/apache21/files/patch-ak
parentYipes, committed the wrong one. This is the INDEX file for 3.1R. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_3_1_0'.release/3.1.0
Diffstat (limited to 'www/apache21/files/patch-ak')
-rw-r--r--www/apache21/files/patch-ak40
1 files changed, 0 insertions, 40 deletions
diff --git a/www/apache21/files/patch-ak b/www/apache21/files/patch-ak
deleted file mode 100644
index 7cda58a4604b..000000000000
--- a/www/apache21/files/patch-ak
+++ /dev/null
@@ -1,40 +0,0 @@
-*** src/support/apachectl.orig Fri Jul 17 01:25:54 1998
---- src/support/apachectl Fri Jul 24 00:34:59 1998
-***************
-*** 39,44 ****
---- 39,46 ----
- # -------------------- --------------------
- # |||||||||||||||||||| END CONFIGURATION SECTION ||||||||||||||||||||
-
-+ eval `limits -e -C daemon` >/dev/null 2>&1
-+
- ERROR=0
- ARGV="$@"
- if [ "x$ARGV" = "x" ] ; then
-***************
-*** 50,56 ****
- # check for pidfile
- if [ -f $PIDFILE ] ; then
- PID=`cat $PIDFILE`
-! if kill -0 $PID; then
- STATUS="httpd (pid $PID) running"
- RUNNING=1
- else
---- 52,58 ----
- # check for pidfile
- if [ -f $PIDFILE ] ; then
- PID=`cat $PIDFILE`
-! if kill -0 $PID > /dev/null 2>&1; then
- STATUS="httpd (pid $PID) running"
- RUNNING=1
- else
-***************
-*** 82,87 ****
---- 84,90 ----
- fi
- if kill $PID ; then
- echo "$0 $ARG: httpd stopped"
-+ rm $PIDFILE
- else
- echo "$0 $ARG: httpd could not be stopped"
- ERROR=4