Remove hardcoded keystore password 43/24143/1
authorsblimkie <steven.blimkie@amdocs.com>
Fri, 17 Nov 2017 19:37:55 +0000 (21:37 +0200)
committersblimkie <steven.blimkie@amdocs.com>
Fri, 17 Nov 2017 19:39:42 +0000 (21:39 +0200)
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>
bundleconfig-local/etc/sysprops/sys-props.properties
src/main/bin/start.sh

index b816a44..a55e6ea 100644 (file)
@@ -113,6 +113,4 @@ RESTLET_COMPONENT_REUSE_ADDRESS=true
 #End of AJSC System Properties
 
 #Service System Properties. Please, place any Service related System Properties below.
-KEY_STORE_PASSWORD=OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
-KEY_MANAGER_PASSWORD=OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
 
index 003852f..aa1f6b3 100644 (file)
@@ -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