diff options
author | Tian Lee <TianL@amdocs.com> | 2017-11-23 09:35:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-11-23 09:35:07 +0000 |
commit | 94cbd3286b5fdd2f3f8fa3325835e713d71aac73 (patch) | |
tree | d5b9df2c683e1a91106f5610026ad7c95410573c /src | |
parent | 908b4693e5a0a4c2f323dbf518b35e4620f183a1 (diff) | |
parent | 9d00999a9e01b3fdc7c9c47215418498cd399496 (diff) |
Merge "Remove hardcoded keystore password"
Diffstat (limited to 'src')
-rw-r--r-- | src/main/bin/start.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/bin/start.sh b/src/main/bin/start.sh index 003852f..aa1f6b3 100644 --- a/src/main/bin/start.sh +++ b/src/main/bin/start.sh @@ -13,14 +13,14 @@ if [ -z "$KEY_STORE_PASSWORD" ]; then echo "KEY_STORE_PASSWORD must be set in order to start up process" exit 1 else - echo -e "KEY_STORE_PASSWORD=$KEY_STORE_PASSWORD\n" >> $AJSC_CONF_HOME/etc/sysprops/sys-props.properties + echo "KEY_STORE_PASSWORD=$KEY_STORE_PASSWORD\n" >> $AJSC_CONF_HOME/etc/sysprops/sys-props.properties fi if [ -z "$KEY_MANAGER_PASSWORD" ]; then echo "KEY_MANAGER_PASSWORD must be set in order to start up process" exit 1 else - echo -e "KEY_MANAGER_PASSWORD=$KEY_MANAGER_PASSWORD\n" >> $AJSC_CONF_HOME/etc/sysprops/sys-props.properties + echo "KEY_MANAGER_PASSWORD=$KEY_MANAGER_PASSWORD\n" >> $AJSC_CONF_HOME/etc/sysprops/sys-props.properties fi # Add any spring bean configuration files to the Gizmo deployment |