OpenSuse docker file for policy-models-simulator
[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 if [ -z "$SIMULATOR_HOME" ]
27 then
28     SIMULATOR_HOME=${POLICY_HOME}/simulators
29 fi
30
31 KEYSTORE="${SIMULATOR_HOME}/etc/ssl/policy-keystore"
32 KEYSTORE_PASSWD="Pol1cy_0nap"
33 TRUSTSTORE="${SIMULATOR_HOME}/etc/ssl/policy-truststore"
34 TRUSTSTORE_PASSWD="Pol1cy_0nap"
35
36 ${JAVA_HOME}/bin/java \
37     -cp "${SIMULATOR_HOME}/etc:${SIMULATOR_HOME}/lib/*" \
38     -Djavax.net.ssl.keyStore="${KEYSTORE}" \
39     -Djavax.net.ssl.keyStorePassword="${KEYSTORE_PASSWD}" \
40     -Djavax.net.ssl.trustStore="${TRUSTSTORE}" \
41     -Djavax.net.ssl.trustStorePassword="${TRUSTSTORE_PASSWD}" \
42     org.onap.policy.models.simulators.Main \
43         ${SIMULATOR_HOME}/etc/mounted/simParameters.json