Fix CSIT build failure
[policy/models.git] / models-sim / packages / models-simulator-docker / src / main / docker / simulators.sh
1 #!/bin/sh
2 #
3 # ============LICENSE_START=======================================================
4 # ONAP
5 # ================================================================================
6 # Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
7 # Modifications copyright (C) 2020 Bell Canada. All rights reserved.
8 # Modifications Copyright (C) 2022 Nordix Foundation.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13 #
14 #      http://www.apache.org/licenses/LICENSE-2.0
15 #
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 #
22 # SPDX-License-Identifier: Apache-2.0
23 # ============LICENSE_END=========================================================
24 #
25
26 KEYSTORE="${KEYSTORE:-$POLICY_HOME/etc/ssl/policy-keystore}"
27 TRUSTSTORE="${TRUSTSTORE:-$POLICY_HOME/etc/ssl/policy-truststore}"
28 KEYSTORE_PASSWD="${KEYSTORE_PASSWD:-Pol1cy_0nap}"
29 TRUSTSTORE_PASSWD="${TRUSTSTORE_PASSWD:-Pol1cy_0nap}"
30
31 if [ "$#" -ge 1 ]; then
32     CONFIG_FILE=$1
33 else
34     CONFIG_FILE=${CONFIG_FILE}
35 fi
36
37 if [ -z "$CONFIG_FILE" ]; then
38     CONFIG_FILE="${POLICY_HOME}/etc/mounted/simParameters.json"
39 fi
40
41 echo "Policy simulator config file: $CONFIG_FILE"
42
43 if [ -f "${POLICY_HOME}/etc/mounted/policy-truststore" ]; then
44     echo "overriding policy-truststore"
45     cp -f "${POLICY_HOME}"/etc/mounted/policy-truststore "${TRUSTSTORE}"
46 fi
47
48 if [ -f "${POLICY_HOME}/etc/mounted/policy-keystore" ]; then
49     echo "overriding policy-keystore"
50     cp -f "${POLICY_HOME}"/etc/mounted/policy-keystore "${KEYSTORE}"
51 fi
52
53 if [ -f "${POLICY_HOME}/etc/mounted/logback.xml" ]; then
54     echo "overriding logback.xml"
55     cp -f "${POLICY_HOME}"/etc/mounted/logback.xml "${POLICY_HOME}"/etc/
56 fi
57
58 ${JAVA_HOME}/bin/java \
59     -cp "${POLICY_HOME}/etc:${POLICY_HOME}/lib/*" \
60     -Dlogging.config="${POLICY_HOME}/etc/logback.xml" \
61     -Djavax.net.ssl.keyStore="${KEYSTORE}" \
62     -Djavax.net.ssl.keyStorePassword="${KEYSTORE_PASSWD}" \
63     -Djavax.net.ssl.trustStore="${TRUSTSTORE}" \
64     -Djavax.net.ssl.trustStorePassword="${TRUSTSTORE_PASSWD}" \
65     org.onap.policy.models.simulators.Main ${CONFIG_FILE}