diff options
author | Dan Timoney <dtimoney@att.com> | 2020-10-21 15:23:44 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-10-21 15:23:44 -0400 |
commit | eda1329f854994ed8d4fba11a05a3f33b7bace86 (patch) | |
tree | 7708888078c6c45de54d9120656ee02a87692b90 /ms/blueprintsprocessor/application/src/main | |
parent | a6b53aac7ee7c2b201689dc7d0755d9dc3c01083 (diff) |
Fix keytool invocation
Fixed 2 issues with keytool invocation in blueprints-processor start script:
1) removed duplicate '-import'
2) corrected path to cacerts file
Issue-ID: CCSDK-2914
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Id454ebca87811bb9c229ca3145148a7c7a93950b
Diffstat (limited to 'ms/blueprintsprocessor/application/src/main')
-rwxr-xr-x | ms/blueprintsprocessor/application/src/main/docker/startService.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/blueprintsprocessor/application/src/main/docker/startService.sh b/ms/blueprintsprocessor/application/src/main/docker/startService.sh index fb44ffd1c..bbe550b57 100755 --- a/ms/blueprintsprocessor/application/src/main/docker/startService.sh +++ b/ms/blueprintsprocessor/application/src/main/docker/startService.sh @@ -5,7 +5,7 @@ nodeName=BlueprintsProcessor_1.0.0_$(cat /proc/self/cgroup | grep docker | sed s echo "${CLUSTER_ID}:${CLUSTER_NODE_ID} APP Config HOME : ${APP_CONFIG_HOME}" export APP_HOME=/opt/app/onap -keytool -import -noprompt -trustcacerts -keystore $JAVA_HOME/jre/lib/security/cacerts -storepass changeit -alias ONAP -import -file $APP_CONFIG_HOME/ONAP_RootCA.cer +keytool -import -noprompt -trustcacerts -keystore $JAVA_HOME/lib/security/cacerts -storepass changeit -alias ONAP -file $APP_CONFIG_HOME/ONAP_RootCA.cer exec java -classpath "/etc:${APP_HOME}/lib/*:/lib/*:/src:/schema:/generated-sources:${APP_CONFIG_HOME}:${APP_HOME}" \ -DappName=${APP_NAME} -DappVersion=${BUNDLEVERSION} \ |