blob: e4b8c220d5ca0321ff3ff1ce04d4c54664e81fa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/bash
fillTemplateProperties() {
source /tmp/vid/localize_war.sh $1 || {
echo "ERROR: Localization script failed"
exit 2
}
}
createWritableLogbackConfig() {
# Create logback.xml in /tmp/vid/
# /tmp/logback.xml is owned by root and unmodifiable
cp -f /tmp/logback.xml /tmp/vid/logback.xml
}
if [ "${ON_KUBERNETES}" = "TRUE" ]
then
echo "We're running on Kubernetes, preconfiguration is already handled"
else
createWritableLogbackConfig
TEMPLATES_BASE_DIR=/usr/local/tomcat/webapps/vid/WEB-INF
fillTemplateProperties ${TEMPLATES_BASE_DIR}
fi
# Set CATALINA_OPTS if not defined previously
# Enables late-evaluation of env variables, such as VID_KEYSTORE_PASSWORD
: "${CATALINA_OPTS:=-Dvid.keystore.password=${VID_KEYSTORE_PASSWORD} -Dvid.keyalias=vid@vid.onap.org -Dvid.keystore.filename=${VID_KEYSTORE_FILENAME} -Dcom.att.eelf.logging.file=logback.xml -Dcom.att.eelf.logging.path=/tmp/vid/}"
echo "CATALINA_OPTS: ${CATALINA_OPTS}"
export CATALINA_OPTS
catalina.sh run
|