From e1f88b91981a22cc63019d1d6b73089566425383 Mon Sep 17 00:00:00 2001 From: Michael Mokry Date: Wed, 22 Aug 2018 11:07:09 -0500 Subject: policy/engine changes to support PE https Enabled https connector in server.xml and modified the docker-install.sh to fix the default variable name for policy truststore Change-Id: I6db6a6d2353130c91c1f344ea7927d187150adca Issue-ID: POLICY-781 Signed-off-by: Michael Mokry --- packages/docker/src/main/docker/docker-install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'packages/docker/src/main') diff --git a/packages/docker/src/main/docker/docker-install.sh b/packages/docker/src/main/docker/docker-install.sh index 7176abf20..3700e5731 100644 --- a/packages/docker/src/main/docker/docker-install.sh +++ b/packages/docker/src/main/docker/docker-install.sh @@ -405,11 +405,10 @@ function configure_keystore() { set -x fi - local DEFAULT_KEYSTORE_PASSWORD="Pol1cy_0nap" local DEFAULT_KEYSTORE_PASSWORD='Pol1cy_0nap' if [[ -n ${TRUSTSTORE_PASSWD} ]]; then - keytool -storepasswd -storepass "${DEFAULT_TRUSTSTORE_PASSWORD}" -keystore "${POLICY_HOME}/etc/ssl/policy-truststore" -new "${TRUSTSTORE_PASSWD}" + keytool -storepasswd -storepass "${DEFAULT_KEYSTORE_PASSWORD}" -keystore "${POLICY_HOME}/etc/ssl/policy-truststore" -new "${TRUSTSTORE_PASSWD}" keytool -list -keystore "${POLICY_HOME}/etc/ssl/policy-truststore" -storepass "${TRUSTSTORE_PASSWD}" fi -- cgit 1.2.3-korg