Files
labca/patches/entrypoint.patch
Arjan H 6d72d32398 Use ceremony tool for generating keys and certs; store keys on SoftHSM
Replace openssl certificate / CRL generation with the tool as used by
Let's Encrypt, storing the keys on SoftHSMv2, a simulated HSM (Hardware
Security Module).
Include migration of old setups where key files were also stored on
disk.
2025-01-31 20:44:48 +01:00

24 lines
601 B
Diff

diff --git a/test/entrypoint.sh b/test/entrypoint.sh
index a47fd2c9a..626d57155 100755
--- a/test/entrypoint.sh
+++ b/test/entrypoint.sh
@@ -13,15 +13,15 @@ service rsyslog start
# make sure we can reach the mysqldb.
./test/wait-for-it.sh boulder-mysql 3306
-# make sure we can reach the proxysql.
-./test/wait-for-it.sh bproxysql 6032
-
# make sure we can reach pkilint
./test/wait-for-it.sh bpkilint 80
# create the database
MYSQL_CONTAINER=1 $DIR/create_db.sh
+# Generate the internal keys and certs
+./test/certs/generate.sh
+
if [[ $# -eq 0 ]]; then
exec python3 ./start.py
fi