#!/usr/bin/ksh 
# Set the Apache Tomcat specific environment variables which the start, stop 
# and check fuctions will use 
#
# EnvScript 	Script to set runtime environment for tomcat
# User 		Apache Tomcat User
# Basepath	Absolute path to Tomcat Home directory i.e. 4.x CATALINA_HOME
#               or TOMCAT_HOME for 3.x
# Host		Hostname to test Apache Tomcat 
# Port		Port where Apache Tomcat is configured
# TestCmd	Apache Tomcat test command
# Startwait	Sleeping $Startwait seconds aftercompletion of the 
#               start command
EnvScript=
User=
Basepath=
Host=
Port=8080
TestCmd="get /index.jsp"
ReturnString="CATALINA"
Startwait=20
