Merge "Fixing minor bug in policy-models/pdp-simulator script"
[policy/models.git] / models-sim / policy-models-sim-pdp / src / main / package / docker / pdp-sim.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019-2020 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
22 if [ -z "$PDP_SIM_HOME" ]
23 then
24         PDP_SIM_HOME=/opt/app/policy/pdp-sim
25 fi
26
27 JAVA_HOME=/usr/lib/jvm/java-11-openjdk
28 KEYSTORE="${PDP_SIM_HOME}/etc/ssl/policy-keystore"
29 KEYSTORE_PASSWD="Pol1cy_0nap"
30 TRUSTSTORE="${PDP_SIM_HOME}/etc/ssl/policy-truststore"
31 TRUSTSTORE_PASSWD="Pol1cy_0nap"
32
33 if [ "$#" -eq 1 ]
34 then
35     CONFIG_FILE=$1
36 else
37     CONFIG_FILE=${CONFIG_FILE}
38 fi
39
40 if [ -z "$CONFIG_FILE" ]
41 then
42     CONFIG_FILE="$PDP_SIM_HOME/etc/config/OnapPfConfig.json"
43 fi
44
45 echo "PDP simulator configuration file:" $CONFIG_FILE
46
47 $JAVA_HOME/bin/java \
48     -cp "$PDP_SIM_HOME/etc:$PDP_SIM_HOME/lib/*" \
49     -Djavax.net.ssl.keyStore="$KEYSTORE" \
50     -Djavax.net.ssl.keyStorePassword="$KEYSTORE_PASSWD" \
51     -Djavax.net.ssl.trustStore="$TRUSTSTORE" \
52     -Djavax.net.ssl.trustStorePassword="$TRUSTSTORE_PASSWD" \
53     -Dlogback.configurationFile=$PDP_SIM_HOME/etc/logback.xml \
54     org.onap.policy.models.sim.pdp.PdpSimulatorMain \
55     -c $CONFIG_FILE