diff options
author | 2018-10-24 18:27:28 +0000 | |
---|---|---|
committer | 2018-10-24 18:27:28 +0000 | |
commit | 693ebced47f4211b5b6b8874b41e60cedf9dba0e (patch) | |
tree | dd597caca058a44f3f8fbc366668827c61498236 /auth/sample/bin/client.sh | |
parent | eb1a7439bbbd282fe2ff4f76a82a7f337323996e (diff) | |
parent | 284ad0ad02fc18f8603f777b8cc38ba1d73e4b83 (diff) |
Merge "Config Container starts"
Diffstat (limited to 'auth/sample/bin/client.sh')
-rwxr-xr-x | auth/sample/bin/client.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/auth/sample/bin/client.sh b/auth/sample/bin/client.sh index 363e2b43..e9422880 100755 --- a/auth/sample/bin/client.sh +++ b/auth/sample/bin/client.sh @@ -66,6 +66,8 @@ if [ ! -e "$DOT_AAF/keyfile" ]; then base64 -d $CONFIG/cert/truststoreONAPall.jks.b64 > $DOT_AAF/truststoreONAPall.jks echo "cadi_truststore=$DOT_AAF/truststoreONAPall.jks" >> ${SSO} echo cadi_truststore_password=enc:$(sso_encrypt changeit) >> ${SSO} + echo "Caller Properties Initialized" + INITIALIZED="true" fi # Only initialize once, automatically... @@ -92,6 +94,8 @@ if [ ! -e $LOCAL/${NS}.props ]; then echo "#### Validate Configuration and Certificate with live call" $JAVA_AGENT_SELF validate + echo "Obtained Certificates" + INITIALIZED="true" else echo "#### Certificate Authorization Artifact must be valid to continue" fi @@ -101,7 +105,11 @@ fi # Now run a command CMD=$2 if [ -z "$CMD" ]; then - $JAVA_AGENT + if [ -n "$INITIALIZED" ]; then + echo "Initialization complete" + else + $JAVA_AGENT + fi else shift shift |