summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--Makefile.PL4
-rw-r--r--lib/Config/HAProxy.pm2
3 files changed, 8 insertions, 1 deletions
diff --git a/Changes b/Changes
index 0d0a1a9..d0f70d4 100644
--- a/Changes
+++ b/Changes
@@ -1,8 +1,11 @@
1Revision history for Perl extension Config::HAProxy. 1Revision history for Perl extension Config::HAProxy.
2 2
31.06 Fri Feb 12 20:37:32 2021
4 - Change bugtracker address.
5
31.05 Mon May 27 13:59:57 2019 61.05 Mon May 27 13:59:57 2019
4 - unlink temporary file on error 7 - unlink temporary file on error
5 8
61.04 Sun May 26 12:23:54 2019 91.04 Sun May 26 12:23:54 2019
7 - fix improper use of IPC::Cmd 10 - fix improper use of IPC::Cmd
8 11
diff --git a/Makefile.PL b/Makefile.PL
index 754d3aa..d7c08b9 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -24,12 +24,16 @@ WriteMakefile(
24 resources => { 24 resources => {
25 repository => { 25 repository => {
26 type => 'git', 26 type => 'git',
27 url => 'git://git.gnu.org.ua/config-haproxy.git', 27 url => 'git://git.gnu.org.ua/config-haproxy.git',
28 web => 'http://git.gnu.org.ua/cgit/config-haproxy.git/', 28 web => 'http://git.gnu.org.ua/cgit/config-haproxy.git/',
29 }, 29 },
30 bugtracker => {
31 web => 'https://puszcza.gnu.org.ua/bugs/?group=config-haproxy',
32 mailto => 'gray+config-haproxy@gnu.org.ua'
33 }
30 }, 34 },
31 provides => Module::Metadata->provides(version => '1.4', 35 provides => Module::Metadata->provides(version => '1.4',
32 dir => 'lib') 36 dir => 'lib')
33 } 37 }
34); 38);
35 39
diff --git a/lib/Config/HAProxy.pm b/lib/Config/HAProxy.pm
index 35e75b9..15bfcb2 100644
--- a/lib/Config/HAProxy.pm
+++ b/lib/Config/HAProxy.pm
@@ -13,13 +13,13 @@ use File::Basename;
13use File::Temp qw(tempfile); 13use File::Temp qw(tempfile);
14use File::stat; 14use File::stat;
15use File::Spec; 15use File::Spec;
16use IPC::Cmd qw(run); 16use IPC::Cmd qw(run);
17use Carp; 17use Carp;
18 18
19our $VERSION = '1.05'; 19our $VERSION = '1.06';
20 20
21my %sections = ( 21my %sections = (
22 global => 1, 22 global => 1,
23 defaults => 1, 23 defaults => 1,
24 frontend => 1, 24 frontend => 1,
25 backend => 1, 25 backend => 1,

Return to:

Send suggestions and report system problems to the System administrator.