blob: 73a869bbe602b8799b6f3402c17eba61d95596fb [file] [log] [blame]
jhh9ebbb7c2020-08-03 15:23:32 -05001#!/bin/bash -x
mmis461cafd2018-09-05 10:35:44 +01002#
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
a.sreekumarbcfdaa52020-01-23 14:56:06 +000023JAVA_HOME=/usr/lib/jvm/java-11-openjdk/
jhh9ebbb7c2020-08-03 15:23:32 -050024KEYSTORE="${KEYSTORE:-$POLICY_HOME/etc/ssl/policy-keystore}"
25TRUSTSTORE="${TRUSTSTORE:-$POLICY_HOME/etc/ssl/policy-truststore}"
26KEYSTORE_PASSWD="${KEYSTORE_PASSWD:-Pol1cy_0nap}"
27TRUSTSTORE_PASSWD="${TRUSTSTORE_PASSWD:-Pol1cy_0nap}"
liboNetfc32c232018-12-18 09:22:00 +080028
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"
jhh9ebbb7c2020-08-03 15:23:32 -050042 cp -f "${POLICY_HOME}"/etc/mounted/policy-truststore "${TRUSTSTORE}"
jhh6e8f8612019-10-17 15:05:07 -050043fi
44
45if [[ -f "${POLICY_HOME}"/etc/mounted/policy-keystore ]]; then
46 echo "overriding policy-keystore"
jhh9ebbb7c2020-08-03 15:23:32 -050047 cp -f "${POLICY_HOME}"/etc/mounted/policy-keystore "${KEYSTORE}"
jhh6e8f8612019-10-17 15:05:07 -050048fi
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
jhh9ebbb7c2020-08-03 15:23:32 -050057$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}"