aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2020-07-27 00:30:03 +0000
committerGerrit Code Review <gerrit@onap.org>2020-07-27 00:30:03 +0000
commit0785fa5a4b92387dec60351ade60a175a036b85f (patch)
treed73b9e78ca11ce8961e37b892bbcd6984b07e117 /resources
parent4f485e994a7dd062d0bdf69cf274a154ae0910a1 (diff)
parent7b307d309bc01b2c13527342dae623231ea5d9ad (diff)
Merge "Fix cacert"
Diffstat (limited to 'resources')
-rwxr-xr-xresources/sch.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/resources/sch.sh b/resources/sch.sh
index c4e4dab..52fb8d6 100755
--- a/resources/sch.sh
+++ b/resources/sch.sh
@@ -1,6 +1,6 @@
#!/bin/bash
# ================================================================================
-# Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -40,8 +40,7 @@ fi
# Add the cacert to validate inventory's cert to support TLS. This command is
# allowed to fail when there is no need for https.
# NOTE: This user must have permission to write to /usr/local/openjdk-11/lib/security/cacerts
-keytool -importcert -file $PATH_TO_CACERT -keystore /usr/local/openjdk-11/lib/security/cacerts -alias "inventory" -noprompt -storepass changeit
+keytool -importcert -file $PATH_TO_CACERT -cacerts -alias "inventory" -noprompt -storepass changeit
# Now launch SCH
java -jar /opt/servicechange-handler.jar $SCH_ARGS
-