From 995c51941dbc80a69bdc01ea56c86219d3c73eaf Mon Sep 17 00:00:00 2001 From: "Bansal, Nitin (nb121v)" Date: Mon, 31 Dec 2018 15:23:14 -0500 Subject: set server truststore params optionally in gizmo set server truststore params optionally in Gizmo Change-Id: I4908e44ca70a994c9112816d33714a0d6db61e27 Issue-ID: AAI-2046 Signed-off-by: Bansal, Nitin (nb121v) --- src/main/bin/start.sh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/main/bin') diff --git a/src/main/bin/start.sh b/src/main/bin/start.sh index f456ae6..87ec099 100644 --- a/src/main/bin/start.sh +++ b/src/main/bin/start.sh @@ -21,6 +21,15 @@ PROPS="-DAPP_HOME=$APP_HOME" PROPS="$PROPS -DCONFIG_HOME=$CONFIG_HOME" PROPS="$PROPS -Dlogging.config=$APP_HOME/bundleconfig/etc/logback.xml" PROPS="$PROPS -DKEY_STORE_PASSWORD=$KEY_STORE_PASSWORD" + +if [ ! -z "$TRUST_STORE_PASSWORD" ]; then + PROPS="$PROPS -DTRUST_STORE_PASSWORD=${TRUST_STORE_PASSWORD}" +fi + +if [ ! -z "$TRUST_STORE_LOCATION" ]; then + PROPS="$PROPS -DTRUST_STORE_LOCATION=${TRUST_STORE_LOCATION}" +fi + JVM_MAX_HEAP=${MAX_HEAP:-1024} set -x -- cgit 1.2.3-korg