Add scripts fom easy.rsa old layout.

This commit is contained in:
2019-08-18 11:41:52 +02:00
parent 840e1cf9dc
commit ecdb3eb966
16 changed files with 615 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#!/bin/sh
# list revoked certificates
CRL="${1:-crl.pem}"
if [ "$KEY_DIR" ]; then
cd "$KEY_DIR" && \
$OPENSSL crl -text -noout -in "$CRL"
else
echo 'Please source the vars script first (i.e. "source ./vars")'
echo 'Make sure you have edited it to reflect your configuration.'
fi