diff options
author | Bogumil Zebek <bogumil.zebek@nokia.com> | 2020-02-17 13:31:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-17 13:31:30 +0000 |
commit | 836acdb5bdd2dc9b07995919ad8d77c2ae45609e (patch) | |
tree | e6605ce240fe9d1bd25604b6d88a51bbf3630c76 /certService/src | |
parent | 6e639f193bcae8b8dfbd286dce456a39275dd988 (diff) | |
parent | 5d11547c0299d7fe7156d515738546e4c288a9dc (diff) |
Merge "Created docker-compose with ejbca and certservice"
Diffstat (limited to 'certService/src')
-rwxr-xr-x | certService/src/main/resources/scripts/ejbca-configuration.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/certService/src/main/resources/scripts/ejbca-configuration.sh b/certService/src/main/resources/scripts/ejbca-configuration.sh new file mode 100755 index 00000000..cdff77de --- /dev/null +++ b/certService/src/main/resources/scripts/ejbca-configuration.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +waitForEjbcaStartUp() { + sleep $1 +} + +configureEjbca() { + ejbca.sh config cmp addalias --alias cmpRA + ejbca.sh config cmp updatealias --alias cmpRA --key operationmode --value ra + ejbca.sh ca editca --caname ManagementCA --field cmpRaAuthSecret --value mypassword + ejbca.sh config cmp dumpalias --alias cmpRA + ejbca.sh config cmp addalias --alias cmp + ejbca.sh config cmp updatealias --alias cmp --key allowautomatickeyupdate --value true + ejbca.sh ra addendentity --username Node123 --dn "CN=Node123" --caname ManagementCA --password mypassword --type 1 --token USERGENERATED + ejbca.sh ra setclearpwd --username Node123 --password mypassword + ejbca.sh config cmp updatealias --alias cmp --key extractusernamecomponent --value CN + ejbca.sh config cmp dumpalias --alias cmp + ejbca.sh ca getcacert --caname ManagementCA -f /dev/stdout > cacert.pem +} + +waitForEjbcaStartUp 30 +configureEjbca |