aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-07-15 09:27:07 +0200
committerSergey Poznyakoff <gray@gnu.org>2020-07-15 10:31:34 +0300
commit02065984894e3f78ee702ba0b4618f048bb5dcf6 (patch)
treee38891f247e20ed37dc562953339c13379605870
parentd2438466196e1567f29d5fac81c26e5a0332897b (diff)
downloadacmeman-02065984894e3f78ee702ba0b4618f048bb5dcf6.tar.gz
acmeman-02065984894e3f78ee702ba0b4618f048bb5dcf6.tar.bz2
Improve error reporting. Version 3.06v3.06
-rw-r--r--Changes4
-rw-r--r--lib/App/Acmeman.pm10
2 files changed, 12 insertions, 2 deletions
diff --git a/Changes b/Changes
index 50315ae..0e02669 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
13.06 2020-06-15
2
3 - Improve error reporting
4
13.05 2020-06-14 53.05 2020-06-14
2 6
3 - Fix manifest 7 - Fix manifest
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;
24use App::Acmeman::Log qw(:all :sysexits); 24use App::Acmeman::Log qw(:all :sysexits);
25use feature 'state'; 25use feature 'state';
26 26
27our $VERSION = '3.05'; 27our $VERSION = '3.06';
28 28
29my $progdescr = "manages ACME certificates"; 29my $progdescr = "manages ACME certificates";
30 30
@@ -557,7 +557,13 @@ sub register_domain_certificate {
557 sleep 1 557 sleep 1
558 } 558 }
559 if ($ret ne 'valid') { 559 if ($ret ne 'valid') {
560 error("$domain: can't renew certificate: authorization: $ret"); 560 my $text = "authorization $ret";
561 if (my ($ch) = grep { $_->type() eq 'http-01' } $authz->challenges()) {
562 if (my $err = $ch->error()) {
563 $text .= ': ' . $err->to_string;
564 }
565 }
566 error("$domain: can't renew certificate: $text");
561 return 0; 567 return 0;
562 } 568 }
563 } 569 }

Return to:

Send suggestions and report system problems to the System administrator.