ff4afa1cadc92ca7101f4eb69cc4b70b0e434535
[policy/pap.git] / testsuites / stability / src / main / resources / papsetup / config / pap / bin / policy-pap.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019 Nordix Foundation.
5 #  Modifications Copyright (C) 2019 AT&T Intellectual Property.
6 # ================================================================================
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
23 JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/
24 POLICY_PAP_HOME=/opt/app/policy/pap
25 KEYSTORE="${POLICY_HOME}/etc/ssl/policy-keystore"
26 KEYSTORE_PASSWD="Pol1cy_0nap"
27 TRUSTSTORE="${POLICY_HOME}/etc/ssl/policy-truststore"
28 TRUSTSTORE_PASSWD="Pol1cy_0nap"
29
30
31 if [ "$#" -ge 1 ]; then
32     CONFIG_FILE=$1
33 else
34     CONFIG_FILE=${CONFIG_FILE}
35 fi
36
37 if [ "$#" -ge 2 ]; then
38     PROP_FILE=$2
39 else
40     PROP_FILE=${PROP_FILE}
41 fi
42
43 if [ -z "$CONFIG_FILE" ]
44   then
45     CONFIG_FILE="$POLICY_PAP_HOME/etc/defaultConfig.json"
46 fi
47
48 if [ -z "$PROP_FILE" ]
49   then
50     PROP_FILE="$POLICY_PAP_HOME/etc/topic.properties"
51 fi
52
53 echo "Policy pap config file: $CONFIG_FILE"
54 echo "Policy pap property file: $PROP_FILE"
55
56 $JAVA_HOME/bin/java -cp "$POLICY_PAP_HOME/etc:$POLICY_PAP_HOME/lib/*" -Djavax.net.ssl.keyStore="$KEYSTORE" -Djavax.net.ssl.keyStorePassword="$KEYSTORE_PASSWD" -Djavax.net.ssl.trustStore="$TRUSTSTORE" -Djavax.net.ssl.trustStorePassword="$TRUSTSTORE_PASSWD" -Dcom.sun.management.jmxremote.rmi.port=9090 -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=9090 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.local.only=false -Djava.rmi.server.hostname=10.2.0.43  org.onap.policy.pap.main.startstop.Main -c $CONFIG_FILE -p $PROP_FILE
57