]> jfr.im git - vpn-prov.git/blob - easy-rsa/list-crl
update gpresult to reflect monthly sch task
[vpn-prov.git] / easy-rsa / list-crl
1 #!/bin/sh
2
3 # list revoked certificates
4
5 CRL="${1:-crl.pem}"
6
7 if [ "$KEY_DIR" ]; then
8 cd "$KEY_DIR" && \
9 $OPENSSL crl -text -noout -in "$CRL"
10 else
11 echo 'Please source the vars script first (i.e. "source ./vars")'
12 echo 'Make sure you have edited it to reflect your configuration.'
13 fi