CASA/CASA-auth-token/server-java/Svc/linux/envvars
Juan Carlos Luciani a50234c0f6 Applied Ruedigers envvars fix to all other scripts where we are
trying to decide whether the platform is 64bit or not. We should have
been checking for the existance of the /usr/lib64/jvm/jre folder instead
of just checking for the existance of the /usr/lib64 folder.
2008-06-05 16:43:23 +00:00

35 lines
1.1 KiB
Plaintext

############################################################
# #
# Environment variable file for casa_atsd. #
# #
# Note: This file is sourced by the casa_atsd rc script #
# when starting the service. #
# #
############################################################
# Set JAVA_HOME
if [ -d /usr/lib64/jvm/jre ]; then
LIB=lib64
else
LIB=lib
fi
JAVA_HOME="/usr/$LIB/jvm/jre"
CATALINA_BASE="/srv/www/casaats"
if [ -d /usr/share/tomcat6 ]; then
CATALINA_HOME="/usr/share/tomcat6"
else
if [ -d /usr/share/tomcat55 ]; then
CATALINA_HOME="/usr/share/tomcat55"
else
CATALINA_HOME="/usr/share/tomcat5"
fi
fi
CATALINA_PID="/var/lib/CASA/authtoken/svc/casaatsd.pid"
JAVA_OPTS="-Dcom.novell.casa.authtoksvc.config=/etc/CASA/authtoken/svc -Dlog4j.configuration=file:/etc/CASA/authtoken/svc/log4j.properties -Djava.library.path=/usr/$LIB"
export CATALINA_BASE CATALINA_HOME CATALINA_PID JAVA_HOME JAVA_OPTS