Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
165 - 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