blob: c428fd553ada338ec161d85277433c06b86a2b0b [file] [log] [blame]
Sirisha_Manchikanti18526e92021-06-01 16:48:25 +01001#!/usr/bin/env sh
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2021 Nordix Foundation.
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# SPDX-License-Identifier: Apache-2.0
19# ============LICENSE_END=========================================================
20#
21
22JAVA_HOME=/usr/lib/jvm/java-11-openjdk/
23KEYSTORE="${KEYSTORE:-$POLICY_HOME/etc/ssl/policy-keystore}"
24TRUSTSTORE="${TRUSTSTORE:-$POLICY_HOME/etc/ssl/policy-truststore}"
25KEYSTORE_PASSWD="${KEYSTORE_PASSWD:-Pol1cy_0nap}"
26TRUSTSTORE_PASSWD="${TRUSTSTORE_PASSWD:-Pol1cy_0nap}"
27
28if [ "$#" -eq 1 ]; then
29 CONFIG_FILE=$1
30else
31 CONFIG_FILE=${CONFIG_FILE}
32fi
33
34if [ -z "$CONFIG_FILE" ]; then
FrancescoFioraEst252a4bb2021-07-23 15:53:46 +010035 CONFIG_FILE="${POLICY_HOME}/etc/ClRuntimeParameters.yaml"
Sirisha_Manchikanti18526e92021-06-01 16:48:25 +010036fi
37
38echo "Policy clamp config file: $CONFIG_FILE"
39
40if [ -f "${POLICY_HOME}/etc/mounted/policy-truststore" ]; then
41 echo "overriding policy-truststore"
42 cp -f "${POLICY_HOME}"/etc/mounted/policy-truststore "${TRUSTSTORE}"
43fi
44
45if [ -f "${POLICY_HOME}/etc/mounted/policy-keystore" ]; then
46 echo "overriding policy-keystore"
47 cp -f "${POLICY_HOME}"/etc/mounted/policy-keystore "${KEYSTORE}"
48fi
49
50if [ -f "${POLICY_HOME}/etc/mounted/logback.xml" ]; then
FrancescoFioraEst252a4bb2021-07-23 15:53:46 +010051 echo "overriding logback xml files"
52 cp -f "${POLICY_HOME}"/etc/mounted/logback*.xml "${POLICY_HOME}"/etc/
Sirisha_Manchikanti18526e92021-06-01 16:48:25 +010053fi
54
FrancescoFioraEst252a4bb2021-07-23 15:53:46 +010055touch /app/app.jar
56mkdir -p "${POLICY_HOME}"/config/
57cp -f "${CONFIG_FILE}" "${POLICY_HOME}"/config/ClRuntimeParameters.yaml
58
FrancescoFioraEst7b7fbdf2021-09-17 15:02:03 +010059$JAVA_HOME/bin/java -Dserver.ssl.enabled="true" \
60 -Dserver.ssl.keyStore="${KEYSTORE}" \
61 -Dserver.ssl.keyStorePassword="${KEYSTORE_PASSWD}" \
Sirisha_Manchikanti18526e92021-06-01 16:48:25 +010062 -Djavax.net.ssl.trustStore="${TRUSTSTORE}" \
63 -Djavax.net.ssl.trustStorePassword="${TRUSTSTORE_PASSWD}" \
Sirisha_Manchikantidc007152021-10-05 16:37:04 +010064 -Dcom.sun.management.jmxremote.rmi.port=9090 \
65 -Dcom.sun.management.jmxremote=true \
66 -Dcom.sun.management.jmxremote.port=9090 \
67 -Dcom.sun.management.jmxremote.ssl=false \
68 -Dcom.sun.management.jmxremote.authenticate=false \
69 -Dcom.sun.management.jmxremote.local.only=false \
FrancescoFioraEst252a4bb2021-07-23 15:53:46 +010070 -jar /app/app.jar \
71 --spring.config.location="${POLICY_HOME}/config/ClRuntimeParameters.yaml"