#!/usr/bin/ksh
#
# Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# Set the Centerrun specific environment variables which the start, stop
# and check fuctions will use
#
# User          Centerrun User
# Basepath      Absolute path to N1 Grid Service Prosioning Systems Apache Basedir directory 
# Host          Hostname to test Apache Tomcat
# Tport         Port where the N1 Grid Service Prosioning Systems Apache Tomcat instance 
#		is configured to listen
# TestCmd       Apache Tomcat test command, this variable needs different contents, depending on
#		your master server configuration.
#		Your master server answers http request, configure:
#		TestCmd="get /index.jsp"
#		Your master server answers https request, configure:
#		TestCmd="/index.jsp"
# ReturnString	Use one of the strings below according to your N1 Grid Service Prosioning Systems 
#		Server Version.
#		Version 4.1 and 5.x = SSL|Service
# Startwait     Sleeping $Startwait seconds after completion of the
#               start command
# WgetPath	If the Master server is configured to answer https requests only, the absolute path
#		to the wget command is needed here. Omit this variable if your master server answers
#		on http requests.
#		example: WgetPath=/usr/sfw/bin/wget
#		Optional
User=
Basepath=
Host=
Tport=
TestCmd="get /index.jsp"
ReturnString="SSL|Service"
Startwait=
WgetPath=
