From 1ef93c6e81f982040b7087961009a1ec0ab7289b Mon Sep 17 00:00:00 2001 From: Jenkins ConfDroid Date: Sun, 30 Dec 2018 17:13:15 +0100 Subject: [PATCH] recommit for updates in build 40 --- CHANGELOG.md | 35 +++++++++++++++++++ doc/file.README.html | 9 +++-- doc/index.html | 9 +++-- ...d_haproxy_3A_3Aserver_3A_3Aproxy_test.html | 6 ++-- 4 files changed, 51 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f74ec1..6a7a0a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,41 @@ Changelog of Git Changelog.

No issue

+f02d2ba6f314d94 Jenkins ConfDroid 2019-12-30 16:07:27 +

+

recommit for updates in build 39

+ +

+ae0fbb70baa04cd Arne Teuke 2019-12-30 16:06:53 +

+

tests acl template

+ +

+6713bb3ac8aac54 Arne Teuke 2019-12-30 16:05:16 +

+

tests acl template

+ +

+1fe202384551660 Arne Teuke 2019-12-30 16:03:58 +

+

tests acl template

+ +

+54a974c7da4acf1 Arne Teuke 2019-12-30 16:02:05 +

+

tests acl template

+ +

+6704cb0aa917b45 Arne Teuke 2019-12-30 15:59:37 +

+

tests acl template

+ +

+fbb8f63c867a721 Arne Teuke 2019-12-30 15:47:49 +

+

tests acl template

+ +

72b6055ea0668a7 Jenkins ConfDroid 2019-12-30 15:39:49

recommit for updates in build 33

diff --git a/doc/file.README.html b/doc/file.README.html index 8256f7d..a5eaf0f 100644 --- a/doc/file.README.html +++ b/doc/file.README.html @@ -59,7 +59,7 @@

|Repo Name| version | Build Status| |—|—|—|—| |cd_haproxy| -1.0.1.0 | |

Synopsis

@@ -201,13 +201,16 @@ addresses the define, like so:

cd_haproxy::server::proxy { 'testing':
     frontend_name   =>  'test01-frontend',
-    acl_rule        =>  'test01-acl',
+    frontend_mode   =>  'http',
+    `acl_rule`        =>  ['too_fast fe_sess_rate ge 10',
+                          'network_allowed src 0.0.0.0/0'],
     backend_name    =>  'test01-backend',
   }

This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes -in the configuration file are made.

+in the configuration file are made. Multiple ACLs need to be added as +array, and will create one line each.

SELINUX

diff --git a/doc/index.html b/doc/index.html index 3d6f3c4..e1ab148 100644 --- a/doc/index.html +++ b/doc/index.html @@ -59,7 +59,7 @@

|Repo Name| version | Build Status| |—|—|—|—| |cd_haproxy| -1.0.1.0 | |

Synopsis

@@ -201,13 +201,16 @@ addresses the define, like so:

cd_haproxy::server::proxy { 'testing':
     frontend_name   =>  'test01-frontend',
-    acl_rule        =>  'test01-acl',
+    frontend_mode   =>  'http',
+    `acl_rule`        =>  ['too_fast fe_sess_rate ge 10',
+                          'network_allowed src 0.0.0.0/0'],
     backend_name    =>  'test01-backend',
   }

This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes -in the configuration file are made.

+in the configuration file are made. Multiple ACLs need to be added as +array, and will create one line each.

SELINUX

diff --git a/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html b/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html index 1664671..0b70acb 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html @@ -130,7 +130,8 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

30 31 32 -33 +33 +34
# File 'manifests/server/proxy_test.pp', line 23
@@ -142,7 +143,8 @@ class cd_haproxy::server::proxy_test (
   cd_haproxy::server::proxy { 'testing':
     frontend_name   =>  'test01-frontend',
     frontend_mode   =>  'http',
-    acl_rule        =>  ['too_fast fe_sess_rate ge 10','network_allowed src 0.0.0.0/0'],
+    acl_rule        =>  ['too_fast fe_sess_rate ge 10',
+                        'network_allowed src 0.0.0.0/0'],
     backend_name    =>  'test01-backend',
   }
 }