conf/openssl-bsd.conf
author Tomas Zeman <tzeman@volny.cz>
Wed, 07 Nov 2018 08:41:06 +0100
changeset 37 968d93e43326
parent 29 3f6120005a40
permissions -rw-r--r--
externalscripts/certificate_expiration-file-bsd

# Certificate monitoring

# Number of seconds till certificate expires
# Parameters: $1 - path to cert file
UserParameter=cert.x509.expire[*],openssl x509 -in $1 -enddate|grep notAfter|awk -F= '{print $$2}'|while read l; do t=`date -j -f "%b %e %T %Y %Z" "$l" +%s`; n=`date +%s`; echo `expr $t - $n`; done