cert renew: note reason why renewal due to long lifetime is done

This commit is contained in:
Thomas Lamprecht 2020-04-27 18:28:59 +02:00
parent 75456ef378
commit e33f43a3de

View File

@ -109,7 +109,7 @@ eval {
$renew->("expires soon, renewing..."); $renew->("expires soon, renewing...");
} elsif (!PVE::Certificate::check_expiry($certpath, time() + 2*365*24*60*60)) { } elsif (!PVE::Certificate::check_expiry($certpath, time() + 2*365*24*60*60)) {
# expires in more than 2 years # expires in more than 2 years
$renew->("expires in more than 2 years, renewing to reduce certificate life-span..."); $renew->("expires in more than 2 years, renewing to reduce certificate life-span for client compatibility...");
} }
}; };
syslog ('err', "Checking/Renewing SSL certificate failed: $@") if $@; syslog ('err', "Checking/Renewing SSL certificate failed: $@") if $@;