From ddfafcb27e214260ef721a11bb437a3408f56515 Mon Sep 17 00:00:00 2001
From: Jenkins ConfDroid
# File 'manifests/main/files.pp', line 23 @@ -280,6 +289,15 @@ class cd_haproxy::main::files ( order => '001', } + + # create the header + concat::fragment { 'tail': + target => $hy_main_config, + content => template($hy_config_tail_erb), + order => '100', + } + + # pid file file { $hy_pid: ensure => file, diff --git a/doc/puppet_classes/cd_haproxy_3A_3Aparams.html b/doc/puppet_classes/cd_haproxy_3A_3Aparams.html index c1e26d2..e58eda2 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Aparams.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Aparams.html @@ -92,32 +92,12 @@ --Summary
- Class holds all parameters for the cd_haproxy module and is -inherited by all classes except defines. -Overview
@@ -733,13 +713,6 @@ succeed. -cd_haproxy::params.pp Module name: cd_haproxy Author: Arne Teuke -(arne_teuke@confdroid.com) License: This file is part of cd_haproxy.
- -cd_haproxy is used for providing automatic configuration of HA proxy. -Copyright (C) 2017 confdroid (copyright@confdroid.com) This program is -free software: you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by the Free Software -Foundation, either version 3 of the License, or (at your option) any later -version.
- -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details.
- -You should have received a copy of the GNU General Public License along -with this program. If not, see www.gnu.org/licenses/.
+(arne_teuke@confdroid.com)See Also:
-
- # File 'manifests/params.pp', line 78
+
|
# File 'manifests/server/proxy.pp', line 24
@@ -486,6 +488,7 @@ define cd_haproxy::server::proxy (
$hy_acl_rule = 'cd_haproxy/haproxy_acl_rule.erb'
+
# Ensure acl_rule_front and acl_rule_back are arrays
$acl_rule_front_array = split($acl_rule_front, ';')
$acl_rule_back_array = split($acl_rule_back, ';')
@@ -508,6 +511,7 @@ define cd_haproxy::server::proxy (
content => template($hy_backendrule),
order => $backend_order,
}
+
}
|