You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
390 B
16 lines
390 B
#!/bin/sh
|
|
# get the bitten env
|
|
. ${HOME}/bin-build/stbitten-env.sh
|
|
# get the tomcat env
|
|
. ${HOME}/tomcat/env.sh
|
|
# startup tomcat
|
|
if [ -x ${HOME}/tomcat/CURRENT/bin/startup.sh ];
|
|
then
|
|
${HOME}/tomcat/CURRENT/bin/startup.sh
|
|
else
|
|
${HOME}/tomcat/bin/startup.sh
|
|
fi
|
|
# startup bitten
|
|
echo Firing up ${BUILDER_NAME} on `hostname`
|
|
screen -d -m -S bitten-${BUILDER_NAME} bootloop.sh&
|