From 970630f8d7d963a0ddaf28e8760dea28a24676aa Mon Sep 17 00:00:00 2001 From: Daniel Silverthorn Date: Fri, 4 Jan 2019 11:17:11 -0500 Subject: set server truststore params optionally in search Change-Id: Ic9359d0eea2a0c57a7b17397a8f681aba765f893 Issue-ID: AAI-2046 Signed-off-by: Daniel Silverthorn --- src/main/bin/start.sh | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main/bin') diff --git a/src/main/bin/start.sh b/src/main/bin/start.sh index 69550c6..5248a7a 100644 --- a/src/main/bin/start.sh +++ b/src/main/bin/start.sh @@ -20,6 +20,14 @@ PROPS="$PROPS -Dlogging.config=$BASEDIR/bundleconfig/etc/logback.xml" PROPS="$PROPS -DCONFIG_HOME=$CONFIG_HOME" 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} java $PROPS -jar $BASEDIR/search-data-service-package.jar \ No newline at end of file -- cgit 1.2.3-korg