blob: 94c1dfc443a18f8577ca069976bb797de3f1c56a [file] [log] [blame]
liboNet76cb1592019-04-12 02:41:04 +08001#!/bin/bash
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2018 Ericsson. All rights reserved.
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
22JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/
23ARTIFACT_DISTRIBUTION_HOME=/opt/app/distribution
24KEYSTORE="${ARTIFACT_HOME}/etc/ssl/policy-keystore"
25KEYSTORE_PASSWD="Pol1cy_0nap"
26TRUSTSTORE="${ARTIFACT_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
38 CONFIG_FILE="$ARTIFACT_DISTRIBUTION_HOME/etc/defaultConfig.json"
39fi
40
41echo "Policy distribution config file: $CONFIG_FILE"
42
43$JAVA_HOME/bin/java -cp "$ARTIFACT_DISTRIBUTION_HOME/etc:$ARTIFACT_DISTRIBUTION_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.distribution.main.startstop.Main -c $CONFIG_FILE