diff options
author | Bansal, Nitin (nb121v) <nitin.bansal@amdocs.com> | 2018-12-31 15:23:14 -0500 |
---|---|---|
committer | Bansal, Nitin (nb121v) <nitin.bansal@amdocs.com> | 2018-12-31 15:56:11 -0500 |
commit | 995c51941dbc80a69bdc01ea56c86219d3c73eaf (patch) | |
tree | 92f311c4fe1d88231ec184c7ccd687fbd6e6e320 /src/main/bin | |
parent | a9b88265c2e66103d251ff7d26655f701cd13266 (diff) |
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) <nitin.bansal@amdocs.com>
Diffstat (limited to 'src/main/bin')
-rw-r--r-- | src/main/bin/start.sh | 9 |
1 files changed, 9 insertions, 0 deletions
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 |