diff --git a/PVE/API2/ACME.pm b/PVE/API2/ACME.pm index 8eb04a7d..33890dac 100644 --- a/PVE/API2/ACME.pm +++ b/PVE/API2/ACME.pm @@ -301,7 +301,8 @@ __PACKAGE__->register_method ({ die "$@\n" if $@; print "Revoking old certificate\n"; - $acme->revoke_certificate($old_cert); + eval { $acme->revoke_certificate($old_cert) }; + warn "Revoke request to CA failed: $@" if $@; }; return $rpcenv->fork_worker("acmerenew", undef, $authuser, $realcmd);