Create crl file after init of PKI

This commit is contained in:
Jérémy Dubois 2022-04-04 18:13:37 +02:00
parent 14a65fa42d
commit 97f1affa1b
1 changed files with 6 additions and 0 deletions

View File

@ -333,6 +333,12 @@ EOF
error "Error generating the CA certificate"
fi
fi
"${OPENSSL_BIN}" ca \
-config "${CONF_FILE}" \
-passin pass:${CA_PASSWORD} \
-gencrl \
-out "${CRL}"
}
ocsp() {