1
0
Fork 0

add script to link CA certificates and CRLs

Esse commit está contido em:
Jan Dittberner 2011-05-03 21:23:54 +02:00
commit 1369f5192c
2 arquivos alterados com 14 adições e 0 exclusões

1
README
Ver arquivo

@ -7,4 +7,5 @@ Configuration files:
Scripts:
- cacrllink.sh - Script to link CA certificates and CRLs to hashed names
- createca.sh - Script for creating a CA

13
cacrllink.sh Normal file
Ver arquivo

@ -0,0 +1,13 @@
#!/bin/sh
#
# script for creating links to certificates and CRLs in the current directory
for cert in *.crt.pem
do
ln -s "${cert}" `openssl x509 -in "${cert}" -noout -hash`.0
done
for crl in *.crl.pem
do
ln -s "${crl}" `openssl crl -in "${crl}" -noout -hash`.r0
done