Do not try to update the CRL if its URL is not set

This commit is contained in:
Daniel Berteaud 2013-05-24 16:59:45 +02:00
parent 3220617370
commit 7b7d1f9e50
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@
URL=$(/sbin/e-smith/db configuration getprop openvpn-routed CrlUrl)
DOMAIN=$(/sbin/e-smith/db configuration get DomainName)
if [ -z $URL ]; then
exit 0
fi
/usr/bin/wget $URL -O /tmp/cacrl.pem > /dev/null 2>&1
/usr/bin/openssl crl -inform PEM -in /tmp/cacrl.pem -text > /dev/null 2>&1