aboutsummaryrefslogtreecommitdiffstats
path: root/packages/docker/src/main/docker/docker-install.sh
diff options
context:
space:
mode:
authorMichael Mokry <mm117s@att.com>2018-08-22 11:07:09 -0500
committerMichael Mokry <mm117s@att.com>2018-08-22 11:07:09 -0500
commite1f88b91981a22cc63019d1d6b73089566425383 (patch)
treecccbd84ca14392fe6eba31ebaa450a0dc2937af1 /packages/docker/src/main/docker/docker-install.sh
parentc25e4d412eb573de020ba4e5da48f48451217f52 (diff)
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 <mm117s@att.com>
Diffstat (limited to 'packages/docker/src/main/docker/docker-install.sh')
-rw-r--r--packages/docker/src/main/docker/docker-install.sh3
1 files changed, 1 insertions, 2 deletions
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