|
|
Hi Jon, >> >> I use the following: >> >> if wget -q -k -O - http://xxxx/CAInfo/xxx.crl | openssl crl -inform >> DER > ${CRL}.new; then >> mv ${CRL}.new ${CRL} >> fi > > Does this translate it into PEM format? Yes, he translate in format PEM. For testing this script, add lign for CRL value in your script. The translate result is test.crl file in PEM format. #!/bin/sh CRL=/tmp/test.crl if wget -q -k -O - http://pkitest.appli.dgi/DGI_UsagerB.crl | openssl crl -inform DER > ${CRL}.new; then mv ${CRL}.new ${CRL} fi Bye Yannick Quenec'hdu ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! Openvpn-users mailing list Openvpn-users@xxxxxxxxxxxxxxxxxxxxx https://lists.sourceforge.net/lists/listinfo/openvpn-users Warning: require_once(../../../archive_common.php) [function.require-once]: failed to open stream: No such file or directory in /home/openvpn/domains/openvpn.net/public_html/archive/openvpn-users/2006-02/msg00015.html on line 209 Fatal error: require_once() [function.require]: Failed opening required '../../../archive_common.php' (include_path='/usr/local/lib/php') in /home/openvpn/domains/openvpn.net/public_html/archive/openvpn-users/2006-02/msg00015.html on line 209 |