X-Git-Url: https://git.rapsys.eu/acme/blobdiff_plain/d9077b1e3155078c7819629176f65a7720fa1cb6:/letsconf..1b0a15d0b5348777515f8424f6f6fde1d7bb7822:/acmeconf diff --git a/letsconf b/acmeconf similarity index 94% rename from letsconf rename to acmeconf index cc0f077..c5b9134 100755 --- a/letsconf +++ b/acmeconf @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . # -# Copyright (C) 2016 - 2017 Raphaël Gertz +# Copyright (C) 2016 - 2017 Raphaël Gertz # Best practice use strict; @@ -26,9 +26,6 @@ use Tie::IxHash; # Load POSIX use POSIX qw(EXIT_SUCCESS EXIT_FAILURE); -# XXX: Debug -use Data::Dumper; - # Init redhat my @redhat = (); @@ -91,6 +88,9 @@ for my $key (@redhat) { # Private key #XXX: required key => '/etc/pki/tls/private/'.$domain.'.pem', + # Private account key + #XXX: required + account => '/etc/acme/account.pem', # Mail address #XXX: required mail => 'webmaster@'.$domain, @@ -118,6 +118,9 @@ for my $key (@debian) { # Private key #XXX: required key => '/etc/ssl/private/'.$domain.'.key', + # Private account key + #XXX: required + account => '/etc/acme/account.pem', # Mail address #XXX: required mail => 'webmaster@'.$domain,