From 0abcb904c6649a7b4698cf141392497a41f7b5ce Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 28 Sep 2016 19:28:12 +0200 Subject: [PATCH] Cleanup v0.3 --- acme.pm | 6 +----- gencert | 3 --- 2 files changed, 1 insertion(+), 8 deletions(-) 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; -- 2.41.0