From c409a0953552107f4ad4c6535392071980d9e33b Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 8 Jul 2012 21:38:34 -0700 Subject: Fix some, but by no means all, of puppet-lint's complaining --- manifests/balancermember.pp | 2 +- manifests/config.pp | 7 +++++-- manifests/init.pp | 17 +++++++++++------ 3 files changed, 17 insertions(+), 9 deletions(-) (limited to 'manifests') diff --git a/manifests/balancermember.pp b/manifests/balancermember.pp index 50e90c0..29fb382 100644 --- a/manifests/balancermember.pp +++ b/manifests/balancermember.pp @@ -21,7 +21,7 @@ # fragment name. # # [*listening_service*] -# The haproxy service's instance name (or, the title of the +# The haproxy service's instance name (or, the title of the # haproxy::config resource). This must match up with a declared # haproxy::config resource. # 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, diff --git a/manifests/init.pp b/manifests/init.pp index a0f5265..8005aec 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -45,7 +45,12 @@ # 'stats' => 'enable', # 'option' => 'redispatch', # 'retries' => '3', -# 'timeout' => ['http-request 10s', 'queue 1m', 'connect 10s', 'client 1m', 'server 1m', 'check 10s'], +# 'timeout' => ['http-request 10s', +# 'queue 1m', +# 'connect 10s', +# 'client 1m', +# 'server 1m', +# 'check 10s'], # 'maxconn' => '8000' # }, # @@ -63,13 +68,13 @@ class haproxy ( include concat::setup package { 'haproxy': - ensure => $enable ? { + ensure => $enable ? { true => present, false => absent, }, - name => 'haproxy', + name => 'haproxy', } - + if $enable { concat { '/etc/haproxy/haproxy.cfg': owner => '0', @@ -95,11 +100,11 @@ class haproxy ( } service { 'haproxy': - ensure => $enable ? { + ensure => $enable ? { true => running, false => stopped, }, - enable => $enable ? { + enable => $enable ? { true => true, false => false, }, -- cgit v1.2.3