]> WPIA git - gigi.git/blobdiff - keys/generateTruststore.sh
add: ensure that for Org Administrator actions certificate login is used
[gigi.git] / keys / generateTruststore.sh
index a51481de3d8130058bbff0fef857ad947a5e6e67..7b1858a1e0a58f40c0df5f19f89039f44ef7bdd2 100755 (executable)
@@ -1,11 +1,14 @@
-#!/bin/sh
-# this script imports the cacert root certs
+#!/bin/bash
+# this script imports the root certificates for this installation
 
-#wget -N http://www.cacert.org/certs/root.crt
-#wget -N http://www.cacert.org/certs/class3.crt
+rm -f ../config/cacerts.jks
 
-#keytool -importcert -keystore ../config/cacerts.jks -file root.crt -alias root -storepass "changeit" $1
-#keytool -importcert -keystore ../config/cacerts.jks -file class3.crt -alias class3 -storepass "changeit" $1
-keytool -importcert -keystore ../config/cacerts.jks -file testca.crt -alias own -storepass "changeit" $1
+function import(){
+  keytool -importcert -keystore ../config/cacerts.jks -file "$1.crt" -alias own -storepass "changeit" -alias "$1" $2
+}
+
+import root -noprompt
+import assured
+import unassured
 
 keytool -list -keystore ../config/cacerts.jks -storepass "changeit"