larryi 02/01/30 19:58:14 Modified: src/shell tomcat.sh Log: Fix for Bug 4382. Though it potentially causes the "-wait" option to malfunction, it is better not to inadvertly cause shutdown problems if Tomcat is started twice. If the "-wait" behavior is needed, externally make sure ajp12.id is deleted before running this script. Revision Changes Path 1.32 +1 -5 jakarta-tomcat/src/shell/tomcat.sh Index: tomcat.sh =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/shell/tomcat.sh,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- tomcat.sh 21 Oct 2001 17:33:41 -0000 1.31 +++ tomcat.sh 31 Jan 2002 03:58:13 -0000 1.32 @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: tomcat.sh,v 1.31 2001/10/21 17:33:41 larryi Exp $ +# $Id: tomcat.sh,v 1.32 2002/01/31 03:58:13 larryi Exp $ # Shell script to start and stop the server @@ -142,10 +142,6 @@ elif [ "$1" = "start" ] ; then shift - - if [ -f ${TOMCAT_HOME}/conf/ajp12.id ] ; then - rm -f ${TOMCAT_HOME}/conf/ajp12.id - fi MAX_WAIT=360 WAIT=0
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>