aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-07-14 18:28:17 +0300
committerSergey Poznyakoff <gray@gnu.org>2020-07-14 18:28:17 +0300
commit447a2f7af507feebbf8db7c9af29855f4ee881eb (patch)
treee64196419f7ef6601fafe884e43df30772b41bc0
parent1503b1942bc17411626094ab746fe1de3231c2ef (diff)
downloadacmeman-447a2f7af507feebbf8db7c9af29855f4ee881eb.tar.gz
acmeman-447a2f7af507feebbf8db7c9af29855f4ee881eb.tar.bz2
Version 3.04v3.04
* Changes: Update. * lib/App/Acmeman.pm: Version 3.04 * lib/App/Acmeman/Domain.pm: Remove the $VERSION variable. * lib/App/Acmeman/Log.pm: Use strict and warnings.
-rw-r--r--Changes8
-rw-r--r--lib/App/Acmeman.pm2
-rw-r--r--lib/App/Acmeman/Domain.pm1
-rw-r--r--lib/App/Acmeman/Log.pm2
4 files changed, 11 insertions, 2 deletions
diff --git a/Changes b/Changes
index c89c932..fa5fc7d 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,11 @@
13.04 2020-06-14
2
3 - Rewrite Apache configuration layout support.
4 - Improve Apache setup procedure.
5 - Make sure the generated cert.pem file is terminated with a
6 newline.
7 - Accept ServerName value with the scheme prefix.
8
13.03 2019-12-23 93.03 2019-12-23
2 10
3 - The following environment variables are set when running 11 - The following environment variables are set when running
diff --git a/lib/App/Acmeman.pm b/lib/App/Acmeman.pm
index fafcb09..68d1fe6 100644
--- a/lib/App/Acmeman.pm
+++ b/lib/App/Acmeman.pm
@@ -24,7 +24,7 @@ use Text::ParseWords;
24use App::Acmeman::Log qw(:all :sysexits); 24use App::Acmeman::Log qw(:all :sysexits);
25use feature 'state'; 25use feature 'state';
26 26
27our $VERSION = '3.03'; 27our $VERSION = '3.04';
28 28
29my $progdescr = "manages ACME certificates"; 29my $progdescr = "manages ACME certificates";
30 30
diff --git a/lib/App/Acmeman/Domain.pm b/lib/App/Acmeman/Domain.pm
index 46c3f1d..97ec5ca 100644
--- a/lib/App/Acmeman/Domain.pm
+++ b/lib/App/Acmeman/Domain.pm
@@ -9,7 +9,6 @@ require Exporter;
9our @ISA = qw(Exporter); 9our @ISA = qw(Exporter);
10our @EXPORT_OK = qw(CERT_FILE KEY_FILE CA_FILE); 10our @EXPORT_OK = qw(CERT_FILE KEY_FILE CA_FILE);
11our %EXPORT_TAGS = ( files => [ qw(CERT_FILE KEY_FILE CA_FILE) ] ); 11our %EXPORT_TAGS = ( files => [ qw(CERT_FILE KEY_FILE CA_FILE) ] );
12our $VERSION = '1.00';
13 12
14use constant { 13use constant {
15 CERT_FILE => 0, 14 CERT_FILE => 0,
diff --git a/lib/App/Acmeman/Log.pm b/lib/App/Acmeman/Log.pm
index 72242c0..02f5d65 100644
--- a/lib/App/Acmeman/Log.pm
+++ b/lib/App/Acmeman/Log.pm
@@ -1,4 +1,6 @@
1package App::Acmeman::Log; 1package App::Acmeman::Log;
2use strict;
3use warnings;
2use File::Basename; 4use File::Basename;
3use parent 'Exporter'; 5use parent 'Exporter';
4 6

Return to:

Send suggestions and report system problems to the System administrator.