diff options
author | Sergey Poznyakoff <gray@gnu.org> | 2021-02-12 22:38:59 +0200 |
---|---|---|
committer | Sergey Poznyakoff <gray@gnu.org> | 2021-02-12 22:38:59 +0200 |
commit | 0ab7ca3a30308675a725f9e37a2d0f99326fdcf4 (patch) | |
tree | 5c84f63efc896c4cda3314e0ce90cc4eb9a7160a | |
parent | 06e76a65440a9ecc4d880ff597c8ad5439b7820d (diff) | |
download | config-haproxy-master.tar.gz config-haproxy-master.tar.bz2 |
As a reaction to https://log.perl.org/2020/12/rtcpanorg-sunset.html,
bugtracker switched to puszcza.gnu.org.ua
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | Makefile.PL | 4 | ||||
-rw-r--r-- | lib/Config/HAProxy.pm | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -1,14 +1,17 @@ Revision history for Perl extension Config::HAProxy. +1.06 Fri Feb 12 20:37:32 2021 + - Change bugtracker address. + 1.05 Mon May 27 13:59:57 2019 - unlink temporary file on error 1.04 Sun May 26 12:23:54 2019 - fix improper use of IPC::Cmd 1.03 Sun May 26 09:12:10 2019 - implement configuration syntax check 1.02 Mon Jul 16 07:38:31 2018 - remove the leftover use of autodie diff --git a/Makefile.PL b/Makefile.PL index 754d3aa..d7c08b9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -18,18 +18,22 @@ WriteMakefile( 'File::Basename' => 0, 'File::Temp' => 0, 'IPC::Cmd' => 0 }, META_MERGE => { 'meta-spec' => { version => 2 }, resources => { repository => { type => 'git', url => 'git://git.gnu.org.ua/config-haproxy.git', web => 'http://git.gnu.org.ua/cgit/config-haproxy.git/', }, + bugtracker => { + web => 'https://puszcza.gnu.org.ua/bugs/?group=config-haproxy', + mailto => 'gray+config-haproxy@gnu.org.ua' + } }, provides => Module::Metadata->provides(version => '1.4', dir => 'lib') } ); 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 @@ -7,25 +7,25 @@ use Config::HAProxy::Node::Root; use Config::HAProxy::Node::Section; use Config::HAProxy::Node::Statement; use Config::HAProxy::Node::Comment; use Config::HAProxy::Node::Empty; use Text::ParseWords; use File::Basename; use File::Temp qw(tempfile); use File::stat; use File::Spec; use IPC::Cmd qw(run); use Carp; -our $VERSION = '1.05'; +our $VERSION = '1.06'; my %sections = ( global => 1, defaults => 1, frontend => 1, backend => 1, ); sub new { my $class = shift; my $filename = shift // '/etc/haproxy/haproxy.cfg'; my $self = bless { _filename => $filename, |