]>
Raphaël G. Git Repositories - acme/blob - acmeconf
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 # Copyright (C) 2016 - 2017 Raphaël Gertz <acme@rapsys.eu>
22 # Load required modules
27 use POSIX
qw(EXIT_SUCCESS EXIT_FAILURE);
37 tie
(%root, 'Tie::IxHash', thumbprint
=> '/etc/acmepl/thumbprint', certificates
=> []);
42 # Strip and enable prod
43 @ARGV = map { if ($_ eq '-p') { $prod = 1; (); } else { $_; } } @ARGV;
45 # Strip and enable debug
46 for (my $i = 0; $i <= $#ARGV; $i++) {
48 if ($ARGV[$i] =~ /^(?:(\-r|\-\-redhat)(?:=([^-][a-zA-Z0-9_\.,-]+))?)$/) {
50 push(@redhat, [split(',', $2)]);
51 # Extract next parameter
52 } elsif(defined($ARGV[$i+1]) && $ARGV[$i+1] =~ /^([^-][a-zA-Z0-9_\.,-]+)$/) {
53 push(@redhat, [split(',', $1)]);
57 push(@redhat, ['www.example.com','example.com','...']);
60 } elsif ($ARGV[$i] =~ /^(?:(\-d|\-\-debian)(?:=([^-][a-zA-Z0-9_\.,-]+))?)$/) {
62 push(@debian, [split(',', $2)]);
63 # Extract next parameter
64 } elsif(defined($ARGV[$i+1]) && $ARGV[$i+1] =~ /^([^-][a-zA-Z0-9_\.,-]+)$/) {
65 push(@debian, [split(',', $1)]);
69 push(@debian, ['www.example.com','example.com','...']);
75 if (scalar(@ARGV) < 1) {
76 print "Usage: $0 [(-d|--debian)[=example.com[,...]] [(-r|--redhat)[=example.com[,...]]] [...] > /etc/acmepl/config\n";
80 # Append redhat style examples
81 for my $key (@redhat) {
82 my $domain = shift @{$key};
84 tie
(%{$root{certificates
}[$#{$root{certificates
}}+1]}, 'Tie::IxHash', (
87 cert
=> '/etc/pki/tls/certs/'.$domain.'.pem',
90 key
=> '/etc/pki/tls/private/'.$domain.'.pem',
93 account
=> '/etc/acme/account.pem',
96 mail
=> 'webmaster@'.$domain,
103 # Production certificate
105 #XXX: set to 1 for production
110 # Append debian style examples
111 for my $key (@debian) {
112 my $domain = shift @{$key};
114 tie
(%{$root{certificates
}[$#{$root{certificates
}}+1]}, 'Tie::IxHash', (
117 cert
=> '/etc/ssl/certs/'.$domain.'.crt',
120 key
=> '/etc/ssl/private/'.$domain.'.key',
121 # Private account key
123 account
=> '/etc/acme/account.pem',
126 mail
=> 'webmaster@'.$domain,
133 # Production certificate
135 #XXX: set to 1 for production
140 # Display configuration template
141 print to_json
(\
%root, {pretty
=> 1});