From e33f43a3de77c45f4c7fc108b5e38980a362cc71 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 27 Apr 2020 18:28:59 +0200 Subject: [PATCH] cert renew: note reason why renewal due to long lifetime is done --- bin/pveupdate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pveupdate b/bin/pveupdate index 36ac6814..56d5d718 100755 --- a/bin/pveupdate +++ b/bin/pveupdate @@ -109,7 +109,7 @@ eval { $renew->("expires soon, renewing..."); } elsif (!PVE::Certificate::check_expiry($certpath, time() + 2*365*24*60*60)) { # 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 $@;