summaryrefslogtreecommitdiffstats
path: root/src/main
diff options
context:
space:
mode:
authorsblimkie <steven.blimkie@amdocs.com>2017-11-17 21:37:55 +0200
committersblimkie <steven.blimkie@amdocs.com>2017-11-17 21:39:42 +0200
commit9d00999a9e01b3fdc7c9c47215418498cd399496 (patch)
tree0825663d89a16012b916e1707340b65a840e3b52 /src/main
parent2dd042556f9142fcd525c0277ea21ac3bd828e4f (diff)
Remove hardcoded keystore password
There was a hardcoded keystore password which needed to be removed. Change-Id: I6f567e95ff70a0b4fbc309b2f0bcd708d9695758 IssueID: AAI-482 Signed-off-by: sblimkie <steven.blimkie@amdocs.com>
Diffstat (limited to 'src/main')
-rw-r--r--src/main/bin/start.sh4
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