diff options
author | Remigiusz Janeczek <remigiusz.janeczek@nokia.com> | 2020-03-18 13:21:35 +0100 |
---|---|---|
committer | Remigiusz Janeczek <remigiusz.janeczek@nokia.com> | 2020-03-19 08:51:16 +0100 |
commit | f404a66530eac7b072014af437deb1771977b1f4 (patch) | |
tree | fa3391a43eab0414aac48bf54b6cce2fb6098cb1 /certService/src | |
parent | c16d738408ceef496be1d8bb1b22f6c0d868e6fc (diff) |
Add certservice client to Makefile (local run)
Move files used only in local run from submodules to base dir
Issue-ID: AAF-1107
Signed-off-by: Remigiusz Janeczek <remigiusz.janeczek@nokia.com>
Change-Id: Ia027bfb5859fb2b316215b3f2633b51666d06280
Diffstat (limited to 'certService/src')
-rwxr-xr-x | certService/src/main/resources/scripts/ejbca-configuration.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/certService/src/main/resources/scripts/ejbca-configuration.sh b/certService/src/main/resources/scripts/ejbca-configuration.sh deleted file mode 100755 index 77f5c555..00000000 --- a/certService/src/main/resources/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 |