More changes to deal with 64bit platform issues.

This commit is contained in:
Juan Carlos Luciani
2006-11-29 06:23:48 +00:00
parent 33ca5ca168
commit dfc4379769
4 changed files with 17 additions and 5 deletions

View File

@@ -6,9 +6,15 @@
# when starting the service. #
# #
############################################################
if [ -d /usr/lib64 ]; then
LIB=lib64
else
LIB=lib
fi
CATALINA_BASE="/srv/www/casaats"
CATALINA_HOME="/usr/share/tomcat5"
JAVA_HOME="/usr/lib/jvm/jre-1.5.0"
JAVA_HOME="/usr/$LIB/jvm/jre-1.5.0"
JAVA_OPTS="-Dcom.novell.casa.authtoksvc.config=/etc/CASA/authtoken/svc"
export CATALINA_BASE CATALINA_HOME JAVA_HOME JAVA_OPTS