blob: e2242dda7448f84bc13ad4e4d5e5c95a38b1ef61 [file] [log] [blame]
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -05001#!/bin/bash
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
shaoqiud0fe0492019-06-25 06:10:52 +00005# Modifications Copyright (C) 2019 Nordix Foundation.
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -05006# ================================================================================
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
shaoqiuf626b9f2019-03-06 05:37:04 +000023JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050024KEYSTORE="${POLICY_HOME}/etc/ssl/policy-keystore"
25KEYSTORE_PASSWD="Pol1cy_0nap"
26TRUSTSTORE="${POLICY_HOME}/etc/ssl/policy-truststore"
27TRUSTSTORE_PASSWD="Pol1cy_0nap"
28
29
30if [ "$#" -eq 1 ]; then
31 CONFIG_FILE=$1
32else
33 CONFIG_FILE=${CONFIG_FILE}
34fi
35
36if [ -z "$CONFIG_FILE" ]
37 then
shaoqiu7baf8052019-06-28 05:42:45 +000038 CONFIG_FILE="${POLICY_HOME}/etc/defaultConfig.json"
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050039fi
40
41echo "Policy api config file: $CONFIG_FILE"
42
jhh8b597b92019-10-16 19:36:39 -050043if [[ -f "${POLICY_HOME}"/etc/mounted/policy-truststore ]]; then
44 echo "overriding policy-truststore"
45 cp -f "${POLICY_HOME}"/etc/mounted/policy-truststore "${TRUSTSTORE}"
46fi
47
48if [[ -f "${POLICY_HOME}"/etc/mounted/policy-keystore ]]; then
49 echo "overriding policy-keystore"
50 cp -f "${POLICY_HOME}"/etc/mounted/policy-keystore "${KEYSTORE}"
51fi
52
shaoqiu7baf8052019-06-28 05:42:45 +000053$JAVA_HOME/bin/java -cp "${POLICY_HOME}/etc:${POLICY_HOME}/lib/*" -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.api.main.startstop.Main -c $CONFIG_FILE