summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--lib/Config/HAProxy.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/Changes b/Changes
index ce9641c..0d0a1a9 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.05 Mon May 27 13:59:57 2019
4 - unlink temporary file on error
5
31.04 Sun May 26 12:23:54 2019 61.04 Sun May 26 12:23:54 2019
4 - fix improper use of IPC::Cmd 7 - fix improper use of IPC::Cmd
5 8
61.03 Sun May 26 09:12:10 2019 91.03 Sun May 26 09:12:10 2019
7 - implement configuration syntax check 10 - implement configuration syntax check
8 11
diff --git a/lib/Config/HAProxy.pm b/lib/Config/HAProxy.pm
index 175e402..35e75b9 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.04'; 19our $VERSION = '1.05';
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.