martin 98/09/14 09:04:19
Modified: src/support apachectl
Log:
Undo the redirection of kill -0 to /dev/null. It CAN hide real problems
Revision Changes Path
1.11 +1 -1 apache-1.3/src/support/apachectl
Index: apachectl
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/apachectl,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- apachectl 1998/09/08 21:07:13 1.10
+++ apachectl 1998/09/14 16:04:18 1.11
@@ -50,7 +50,7 @@
# check for pidfile
if [ -f $PIDFILE ] ; then
PID=`cat $PIDFILE`
- if kill -0 $PID 2>/dev/null; then
+ if kill -0 $PID; then
STATUS="httpd (pid $PID) running"
RUNNING=1
else