]> Raphaël G. Git Repositories - acme/commitdiff
Cleanup 0.3.0
authorRaphaël Gertz <git@rapsys.eu>
Wed, 28 Sep 2016 17:28:12 +0000 (19:28 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Wed, 28 Sep 2016 17:28:12 +0000 (19:28 +0200)
v0.3

acme.pm
gencert

diff --git a/acme.pm b/acme.pm
index eabe155afbd6a9f1c370c3d29db5130832bc5c5f..b3629f913cf3de54e0672c2a203a0e65e1dd1339 100644 (file)
--- 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 42af91985485d6f55d7d73d5a50d5f4f747642b9..d7d178c4ed608ff541c356d0489307c7807fb6ba 100755 (executable)
--- 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;