big svn cleanup
[anytun.git] / src / openvpn / easy-rsa / 2.0 / list-crl
blobafc0cd61609d76664200e86f0de239b3db204692
1 #!/bin/bash
3 # list revoked certificates
5 CRL="${1:-crl.pem}"
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.'