diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-07-21 11:58:16 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-07-21 11:58:23 -0500 |
commit | 65c40b3bffb78a1a77d82fc74bbf633a6d0d906f (patch) | |
tree | 932109726bec5b207734df429b880cb50ccb22a0 /conf/CA/truststore.sh | |
parent | c23f2cdcda93f260e26781dfa59dfe2b89c77402 (diff) |
Fix errors found no Container mode
Issue-ID: AAF-318
Change-Id: I90cca45dc91e191594707fdabb54a552d4d90127
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'conf/CA/truststore.sh')
-rw-r--r-- | conf/CA/truststore.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/conf/CA/truststore.sh b/conf/CA/truststore.sh index 399048cb..0414c486 100644 --- a/conf/CA/truststore.sh +++ b/conf/CA/truststore.sh @@ -1,2 +1,5 @@ + echo "FYI, by convention, truststore passwords are 'changeit', but you may add something more sophisticated" -openssl pkcs12 -export -name AAF_Root_CA -in certs/ca.crt -nokeys -out truststore.p12 +# PCKS12 does not appear to be able to mark CAs as Trusted +# openssl pkcs12 -export -name AAF_Root_CA -in certs/ca.crt -nokeys -out truststore.p12 +keytool -importcert -file certs/ca.crt -trustcacerts -alias AAF_ROOT_CA -keystore truststore.jks |