summaryrefslogtreecommitdiff
path: root/ssltools/easy-rsa/2.0/list-crl
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2007-12-03 09:42:38 +0000
committerOthmar Gsenger <otti@anytun.org>2007-12-03 09:42:38 +0000
commit58ff485edbe4bb93ebc922d14df24247846132b6 (patch)
treee98c6412b149024b38550bf7d5dd1ed95e251351 /ssltools/easy-rsa/2.0/list-crl
parentfixed doxygen bug (diff)
added ssl tools
Diffstat (limited to 'ssltools/easy-rsa/2.0/list-crl')
-rwxr-xr-xssltools/easy-rsa/2.0/list-crl13
1 files changed, 13 insertions, 0 deletions
diff --git a/ssltools/easy-rsa/2.0/list-crl b/ssltools/easy-rsa/2.0/list-crl
new file mode 100755
index 0000000..afc0cd6
--- /dev/null
+++ b/ssltools/easy-rsa/2.0/list-crl
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+# 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