aboutsummaryrefslogtreecommitdiff
path: root/lib/App/Acmeman.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/App/Acmeman.pm')
-rw-r--r--lib/App/Acmeman.pm10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/App/Acmeman.pm b/lib/App/Acmeman.pm
index 84e1dda..65aac4f 100644
--- a/lib/App/Acmeman.pm
+++ b/lib/App/Acmeman.pm
@@ -24,7 +24,7 @@ use Text::ParseWords;
use App::Acmeman::Log qw(:all :sysexits);
use feature 'state';
-our $VERSION = '3.05';
+our $VERSION = '3.06';
my $progdescr = "manages ACME certificates";
@@ -557,7 +557,13 @@ sub register_domain_certificate {
sleep 1
}
if ($ret ne 'valid') {
- error("$domain: can't renew certificate: authorization: $ret");
+ my $text = "authorization $ret";
+ if (my ($ch) = grep { $_->type() eq 'http-01' } $authz->challenges()) {
+ if (my $err = $ch->error()) {
+ $text .= ': ' . $err->to_string;
+ }
+ }
+ error("$domain: can't renew certificate: $text");
return 0;
}
}

Return to:

Send suggestions and report system problems to the System administrator.