We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 934b855 commit acf1c99Copy full SHA for acf1c99
tcat.sh
@@ -4,15 +4,17 @@ source mvbuild.config
4
# tomcat_home - This is the main directory for all Tomcat install
5
# workspace_home - This is the main directory containing Workspaces for all projects
6
7
-action = $1
8
-instance = $2
+action=$1
+instance=$2
9
10
cd $tomcat_home/$instance
11
12
if [ "$action" = "start" ]; then
13
+ echo "Starting Tomcat in $tomcat_home/$instance ..."
14
bin/startup.sh
15
else
16
if [ "$action" = "stop" ]; then
17
+ echo "Shutting down Tomcat in $tomcat_home/$instance ..."
18
bin/shutdown.sh
19
20
echo "Please either start or stop Tomcat..."
0 commit comments