summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorRyan Coleman <ryan@puppetlabs.com>2012-10-10 12:05:45 -0700
committerRyan Coleman <ryan@puppetlabs.com>2012-10-10 12:05:45 -0700
commit13d91ef8f8340a941d197c53122b841499f9b786 (patch)
tree3c87add57c24c94dae109dc5ff3f7b08ae525f8e /manifests/init.pp
parent82cc860495ebb89a08dd02191ec34f5d8b858592 (diff)
parent37193348a660c14718dc0503cda687849c3ccad3 (diff)
Merge pull request #8 from hunner/update_docs
Update hash formatting for readability
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp49
1 files changed, 26 insertions, 23 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index f75051c..c36b1ae 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -31,29 +31,32 @@
# === Examples
#
# class { 'haproxy':
-# enable => true,
-# haproxy_global_options => { 'log' => "${::ipaddress} local0",
-# 'chroot' => '/var/lib/haproxy',
-# 'pidfile' => '/var/run/haproxy.pid',
-# 'maxconn' => '4000',
-# 'user' => 'haproxy',
-# 'group' => 'haproxy',
-# 'daemon' => '',
-# 'stats' => 'socket /var/lib/haproxy/stats'
-# },
-# haproxy_defaults_options => { 'log' => 'global',
-# 'stats' => 'enable',
-# 'option' => 'redispatch',
-# 'retries' => '3',
-# 'timeout' => ['http-request 10s',
-# 'queue 1m',
-# 'connect 10s',
-# 'client 1m',
-# 'server 1m',
-# 'check 10s'],
-# 'maxconn' => '8000'
-# },
-#
+# enable => true,
+# haproxy_global_options => {
+# 'log' => "${::ipaddress} local0",
+# 'chroot' => '/var/lib/haproxy',
+# 'pidfile' => '/var/run/haproxy.pid',
+# 'maxconn' => '4000',
+# 'user' => 'haproxy',
+# 'group' => 'haproxy',
+# 'daemon' => '',
+# 'stats' => 'socket /var/lib/haproxy/stats'
+# },
+# haproxy_defaults_options => {
+# 'log' => 'global',
+# 'stats' => 'enable',
+# 'option' => 'redispatch',
+# 'retries' => '3',
+# 'timeout' => [
+# 'http-request 10s',
+# 'queue 1m',
+# 'connect 10s',
+# 'client 1m',
+# 'server 1m',
+# 'check 10s'
+# ],
+# 'maxconn' => '8000'
+# },
# }
#
# === Authors