~ubuntu-branches/ubuntu/hardy/openvpn/hardy-security

« back to all changes in this revision

Viewing changes to easy-rsa/list-crl

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Gonzalez Iniesta
  • Date: 2005-01-05 19:03:11 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050105190311-mvqzpuhmlvobg9nh
Tags: 1.99+2.rc6-1
* The 'Three Wise Men' release.
* New upstream release.
* Update README.Debian with comments on changed string remapping.
  Thanks ron@debian.org for noting this first. (Closes: #288669)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
#
 
4
# list revoked certificates
 
5
#
 
6
#
 
7
 
 
8
if test $# -ne 1; then
 
9
        echo "usage: list-crl <crlfile.pem>";
 
10
        exit 1
 
11
fi
 
12
 
 
13
if test $KEY_DIR; then
 
14
       cd $KEY_DIR && \
 
15
       openssl crl -text -noout -in $1
 
16
else
 
17
       echo you must define KEY_DIR
 
18
fi