summaryrefslogtreecommitdiff
path: root/manifests/config.pp
diff options
context:
space:
mode:
authorR. Tyler Croy <tyler@monkeypox.org>2012-07-08 21:38:34 -0700
committerR. Tyler Croy <tyler@monkeypox.org>2012-07-08 21:38:50 -0700
commitc409a0953552107f4ad4c6535392071980d9e33b (patch)
tree13dba3ce794a59f4a05e13930eda76df129c86ae /manifests/config.pp
parentf9e56b6d4308da2b298b6b616313ecc553a5b6dc (diff)
Fix some, but by no means all, of puppet-lint's complaining
Diffstat (limited to 'manifests/config.pp')
-rw-r--r--manifests/config.pp7
1 files changed, 5 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index fba4f33..5825dd0 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -51,7 +51,8 @@
# virtual_ip => $::ipaddress,
# virtual_ip_port => '18140',
# mode => 'tcp',
-# haproxy_config_options => {'option' => ['tcplog', 'ssl-hello-chk'], 'balance' => 'roundrobin'},
+# haproxy_config_options => {'option' => ['tcplog', 'ssl-hello-chk'],
+# 'balance' => 'roundrobin'},
# }
#
# === Authors
@@ -63,7 +64,9 @@ define haproxy::config (
$order = '20',
$virtual_ip = $::ipaddress,
$mode = 'tcp',
- $haproxy_config_options = {'option' => ['tcplog', 'ssl-hello-chk'], 'balance' => 'roundrobin'},
+ $haproxy_config_options = {'option' => ['tcplog',
+ 'ssl-hello-chk'],
+ 'balance' => 'roundrobin'},
) {
concat::fragment { "${name}_config_block":
order => $order,