summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/config.pp10
1 files changed, 7 insertions, 3 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index 444905b..f47e387 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -71,10 +71,14 @@ define haproxy::config (
$order = '20',
$virtual_ip = $::ipaddress,
$mode = 'tcp',
- $haproxy_config_options = {'option' => ['tcplog',
- 'ssl-hello-chk'],
- 'balance' => 'roundrobin'},
$collect_exported = true,
+ $haproxy_config_options = {
+ 'option' => [
+ 'tcplog',
+ 'ssl-hello-chk'
+ ],
+ 'balance' => 'roundrobin'
+ }
) {
concat::fragment { "${name}_config_block":
order => $order,