From: Raphaƫl Gertz Date: Wed, 28 Sep 2016 17:28:12 +0000 (+0200) Subject: Cleanup X-Git-Tag: 0.3.0 X-Git-Url: https://git.rapsys.eu/acme/commitdiff_plain/0abcb904c6649a7b4698cf141392497a41f7b5ce Cleanup v0.3 --- diff --git a/acme.pm b/acme.pm index eabe155..b3629f9 100644 --- a/acme.pm +++ b/acme.pm @@ -26,9 +26,6 @@ use Net::Domain::TLD; use Tie::IxHash; use POSIX qw(EXIT_FAILURE); -# Debug -use Data::Dumper; - # Documentation links #XXX: see https://letsencrypt.github.io/acme-spec/ (probably based on https://ietf-wg-acme.github.io/acme/) #XXX: see jwk rfc http://www.rfc-editor.org/rfc/rfc7517.txt @@ -73,7 +70,7 @@ use constant { ACME_TERMS => 'https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf', # Version - VERSION => 'v0.2' + VERSION => 'v0.3' }; # User agent object @@ -620,7 +617,6 @@ sub issue { # Handle error unless ($res->is_success) { - print Dumper($res); confess 'POST '.$self->{'new-cert'}.' failed: '.$res->status_line; } diff --git a/gencert b/gencert index 42af919..d7d178c 100755 --- a/gencert +++ b/gencert @@ -10,9 +10,6 @@ use acme; # Load POSIX use POSIX qw(EXIT_SUCCESS EXIT_FAILURE); -#XXX: debug -use Data::Dumper; - # Init prod my $prod = 0;