cd8e5035956a3bd2e0588186aeb0b9bf5f688c26
[policy/xacml-pdp.git] / packages / policy-xacmlpdp-docker / src / main / docker / policy-pdpx.sh
1 #!/usr/bin/env sh
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
5 #  Modifications Copyright (C) 2019-2020 Nordix Foundation.
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-11-openjdk/
24 KEYSTORE="${KEYSTORE:-$POLICY_HOME/etc/ssl/policy-keystore}"
25 TRUSTSTORE="${TRUSTSTORE:-$POLICY_HOME/etc/ssl/policy-truststore}"
26 KEYSTORE_PASSWD="${KEYSTORE_PASSWD:-Pol1cy_0nap}"
27 TRUSTSTORE_PASSWD="${TRUSTSTORE_PASSWD:-Pol1cy_0nap}"
28
29 if [ "$#" -ge 1 ]; then
30     CONFIG_FILE=$1
31 else
32     CONFIG_FILE=${CONFIG_FILE}
33 fi
34
35 if [ -z "$CONFIG_FILE" ]; then
36     CONFIG_FILE="${POLICY_HOME}/etc/defaultConfig.json"
37 fi
38
39 if [ -f "${POLICY_HOME}/etc/mounted/policy-truststore" ]; then
40     echo "overriding policy-truststore"
41     cp -f "${POLICY_HOME}"/etc/mounted/policy-truststore "${TRUSTSTORE}"
42 fi
43
44 if [ -f "${POLICY_HOME}/etc/mounted/policy-keystore" ]; then
45     echo "overriding policy-keystore"
46     cp -f "${POLICY_HOME}"/etc/mounted/policy-keystore "${KEYSTORE}"
47 fi
48
49 if [ -f "${POLICY_HOME}/etc/mounted/xacml.properties" ]; then
50     echo "overriding xacml.properties in guards application"
51     cp -f "${POLICY_HOME}"/etc/mounted/xacml.properties "${POLICY_HOME}"/apps/guard/
52 fi
53
54 if [ -f "${POLICY_HOME}/etc/mounted/logback.xml" ]; then
55     echo "overriding logback.xml"
56     cp -f "${POLICY_HOME}"/etc/mounted/logback.xml "${POLICY_HOME}"/etc/
57 fi
58
59 # Create operationshistory table
60 "${POLICY_HOME}"/mysql/bin/create-guard-table.sh
61
62 echo "Policy Xacml PDP config file: $CONFIG_FILE"
63
64 $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.pdpx.main.startstop.Main -c "${CONFIG_FILE}"