You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@locus.apache.org on 2000/03/31 21:40:03 UTC

cvs commit: jakarta-tomcat/src/shell shutdown.bat startup.bat

craigmcc    00/03/31 11:40:03

  Modified:    src/shell shutdown.bat startup.bat
  Log:
  Correct the command line that executes "tomcat.bat" to pass all arguments
  included on the startup/shutdown command line.
  PR: 135
  Submitted by:	nacho@siapi.es
  
  Revision  Changes    Path
  1.5       +2 -2      jakarta-tomcat/src/shell/shutdown.bat
  
  Index: shutdown.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/shell/shutdown.bat,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- shutdown.bat	2000/02/26 19:41:46	1.4
  +++ shutdown.bat	2000/03/31 19:40:02	1.5
  @@ -1,5 +1,5 @@
   @echo off
  -rem $Id: shutdown.bat,v 1.4 2000/02/26 19:41:46 rubys Exp $
  +rem $Id: shutdown.bat,v 1.5 2000/03/31 19:40:02 craigmcc Exp $
   rem Startup batch file for tomcat server.
   
   if not "%TOMCAT_HOME%" == "" goto start
  @@ -15,6 +15,6 @@
   goto eof
   
   :start
  -call %TOMCAT_HOME%\bin\tomcat stop %*
  +call %TOMCAT_HOME%\bin\tomcat stop %1 %2 %3 %4 %5 %6 %7 %8 %9
   
   :eof
  
  
  
  1.7       +2 -2      jakarta-tomcat/src/shell/startup.bat
  
  Index: startup.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/shell/startup.bat,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- startup.bat	2000/02/26 19:41:46	1.6
  +++ startup.bat	2000/03/31 19:40:02	1.7
  @@ -1,5 +1,5 @@
   @echo off
  -rem $Id: startup.bat,v 1.6 2000/02/26 19:41:46 rubys Exp $
  +rem $Id: startup.bat,v 1.7 2000/03/31 19:40:02 craigmcc Exp $
   rem Startup batch file for tomcat servner.
   
   rem This batch file written and tested under Windows NT
  @@ -18,6 +18,6 @@
   goto eof
   
   :start
  -call %TOMCAT_HOME%\bin\tomcat start %*
  +call %TOMCAT_HOME%\bin\tomcat start %1 %2 %3 %4 %5 %6 %7 %8 %9
   
   :eof