diff options
author | Christian Hesse <mail@eworm.de> | 2019-11-11 20:47:11 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2019-11-11 20:47:11 +0100 |
commit | 9d5c566b1cce5cd24dab0087ea94fcaa582794c8 (patch) | |
tree | cff3bfa6aba963b1d385b8749c19ab84f807ab9b | |
parent | c93c6e1934ac838da6e8000ff0dfe88e42e364de (diff) |
check-certificates: make renew notification silent
-rw-r--r-- | check-certificates | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-certificates b/check-certificates index d28ef86..0f2c844 100644 --- a/check-certificates +++ b/check-certificates @@ -74,7 +74,7 @@ "Fingerprint: " . ($CertNewVal->"fingerprint") . "\n" . \ "Issuer: " . ([ $ParseKeyValueStore ($CertNewVal->"issuer") ]->"CN") . "\n" . \ "Validity: " . ($CertNewVal->"invalid-before") . " to " . ($CertNewVal->"invalid-after") . "\n" . \ - "Expires in: " . [ $FormatExpire ($CertNewVal->"expires-after") ]); + "Expires in: " . [ $FormatExpire ($CertNewVal->"expires-after") ]) "" "true"; :log info ("The certificate " . ($CertVal->"name") . " has been renewed."); } on-error={ :log debug ("Could not renew certificate " . ($CertVal->"name") . "."); |