blob: 17979ba932b09c8d174f66b9f138eb65691552aa [file] [log] [blame]
mmis461cafd2018-09-05 10:35:44 +01001#!/bin/bash
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2018 Ericsson. All rights reserved.
a.sreekumar3a397832020-01-08 12:57:48 +00005# Modifications Copyright (C) 2019-2020 Nordix Foundation.
mmis461cafd2018-09-05 10:35:44 +01006# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18#
19# SPDX-License-Identifier: Apache-2.0
20# ============LICENSE_END=========================================================
21#
22
ning.xi11319a12019-03-06 03:32:53 +000023JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/
liboNetfc32c232018-12-18 09:22:00 +080024KEYSTORE="${POLICY_HOME}/etc/ssl/policy-keystore"
25KEYSTORE_PASSWD="Pol1cy_0nap"
26TRUSTSTORE="${POLICY_HOME}/etc/ssl/policy-truststore"
27TRUSTSTORE_PASSWD="Pol1cy_0nap"
28
Lianhao Lu3bd15a52018-11-07 11:46:28 +080029if [ "$#" -eq 1 ]; then
30 CONFIG_FILE=$1
31else
32 CONFIG_FILE=${CONFIG_FILE}
33fi
34
mmisb9eca382018-09-18 12:55:42 +010035if [ -z "$CONFIG_FILE" ]
36 then
shaoqiu7783a2e2019-06-28 05:45:55 +000037 CONFIG_FILE="${POLICY_HOME}/etc/defaultConfig.json"
mmisb9eca382018-09-18 12:55:42 +010038fi
39
jhh6e8f8612019-10-17 15:05:07 -050040if [[ -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
a.sreekumar3a397832020-01-08 12:57:48 +000050if [[ -f "${POLICY_HOME}"/etc/mounted/logback.xml ]]; then
51 echo "overriding logback.xml"
52 cp -f "${POLICY_HOME}"/etc/mounted/logback.xml "${POLICY_HOME}"/etc/
53fi
54
Lianhao Lu3bd15a52018-11-07 11:46:28 +080055echo "Policy distribution config file: $CONFIG_FILE"
56
a.sreekumar3a397832020-01-08 12:57:48 +000057$JAVA_HOME/bin/java -cp "${POLICY_HOME}/etc:${POLICY_HOME}/lib/*" -Dlogback.configurationFile=$POLICY_HOME/etc/logback.xml -Djavax.net.ssl.keyStore="$KEYSTORE" -Djavax.net.ssl.keyStorePassword="$KEYSTORE_PASSWD" -Djavax.net.ssl.trustStore="$TRUSTSTORE" -Djavax.net.ssl.trustStorePassword="$TRUSTSTORE_PASSWD" org.onap.policy.distribution.main.startstop.Main -c $CONFIG_FILE