summaryrefslogtreecommitdiff
path: root/ssltools/easy-rsa/list-crl
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-04-12 11:24:13 +0000
committerOthmar Gsenger <otti@anytun.org>2008-04-12 11:24:13 +0000
commit572823f65b365cd27345ee59d89b115df34c5338 (patch)
tree8f9ae97b3480b5fe7f049ec040b0e8aeefab7bd9 /ssltools/easy-rsa/list-crl
parentmakefile fixes (diff)
svn cleanup
Diffstat (limited to 'ssltools/easy-rsa/list-crl')
-rw-r--r--ssltools/easy-rsa/list-crl18
1 files changed, 0 insertions, 18 deletions
diff --git a/ssltools/easy-rsa/list-crl b/ssltools/easy-rsa/list-crl
deleted file mode 100644
index b214dbd..0000000
--- a/ssltools/easy-rsa/list-crl
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-#
-# list revoked certificates
-#
-#
-
-if test $# -ne 1; then
- echo "usage: list-crl <crlfile.pem>";
- exit 1
-fi
-
-if test $KEY_DIR; then
- cd $KEY_DIR && \
- openssl crl -text -noout -in $1
-else
- echo you must define KEY_DIR
-fi