aboutsummaryrefslogtreecommitdiffstats
path: root/plans/oom-platform-cert-service/certservice/scripts/ejbca-configuration.sh
diff options
context:
space:
mode:
authorPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2020-11-19 14:13:45 +0100
committerPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2020-11-25 11:51:01 +0000
commit3bbc1c7cb0400aea0235d130d36841e64ae53727 (patch)
tree5869914631aa91cb10983b1cd43f31fc7c1310ec /plans/oom-platform-cert-service/certservice/scripts/ejbca-configuration.sh
parent330676fd2868c5adb52d1faccc913fbe52db6449 (diff)
Update CertService tests for changed ejbca profile
- Introduce ejbca profiles with new Sans types - email, ip, uri - Update CertService tests for changed SANs delimiter Issue-ID: OOM-2632 Signed-off-by: Piotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com> Change-Id: Ie6791d08f0b6143fbcec9572edb10004769ffe00
Diffstat (limited to 'plans/oom-platform-cert-service/certservice/scripts/ejbca-configuration.sh')
-rwxr-xr-xplans/oom-platform-cert-service/certservice/scripts/ejbca-configuration.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/plans/oom-platform-cert-service/certservice/scripts/ejbca-configuration.sh b/plans/oom-platform-cert-service/certservice/scripts/ejbca-configuration.sh
deleted file mode 100755
index 77f5c555..00000000
--- a/plans/oom-platform-cert-service/certservice/scripts/ejbca-configuration.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-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 updatealias --alias cmpRA --key responseprotection --value pbe
- 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 config cmp updatealias --alias cmp --key responseprotection --value pbe
- 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
-}
-
-configureEjbca