blob: 195639ad3355afed7a399dbd50e9705d9fbade74 [file] [log] [blame]
rameshiyer279ab7dc72021-07-07 08:02:55 +01001#!/usr/bin/env sh
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2021 Nordix Foundation.
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-11-openjdk/
23KEYSTORE="${KEYSTORE:-$POLICY_HOME/etc/ssl/policy-keystore}"
24TRUSTSTORE="${TRUSTSTORE:-$POLICY_HOME/etc/ssl/policy-truststore}"
25KEYSTORE_PASSWD="${KEYSTORE_PASSWD:-Pol1cy_0nap}"
26TRUSTSTORE_PASSWD="${TRUSTSTORE_PASSWD:-Pol1cy_0nap}"
27
28
29
30if [ -f "${POLICY_HOME}/etc/mounted/policy-truststore" ]; then
31 echo "overriding policy-truststore"
32 cp -f "${POLICY_HOME}"/etc/mounted/policy-truststore "${TRUSTSTORE}"
33fi
34
35if [ -f "${POLICY_HOME}/etc/mounted/policy-keystore" ]; then
36 echo "overriding policy-keystore"
37 cp -f "${POLICY_HOME}"/etc/mounted/policy-keystore "${KEYSTORE}"
38fi
39
40if [ -f "${POLICY_HOME}/etc/mounted/logback.xml" ]; then
41 echo "overriding logback xml files"
42 cp -f "${POLICY_HOME}"/etc/mounted/logback*.xml "${POLICY_HOME}"/etc/
43fi
44
45$JAVA_HOME/bin/java -Djavax.net.ssl.keyStore="${KEYSTORE}" \
46 -Djavax.net.ssl.keyStorePassword="${KEYSTORE_PASSWD}" \
47 -Djavax.net.ssl.trustStore="${TRUSTSTORE}" \
48 -Djavax.net.ssl.trustStorePassword="${TRUSTSTORE_PASSWD}" \
49 -jar /app/app.jar