summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/haproxy-base.cfg.erb6
-rw-r--r--templates/haproxy_listen_block.erb (renamed from templates/haproxy_config_block.erb)4
2 files changed, 5 insertions, 5 deletions
diff --git a/templates/haproxy-base.cfg.erb b/templates/haproxy-base.cfg.erb
index 3e21436..42e791c 100644
--- a/templates/haproxy-base.cfg.erb
+++ b/templates/haproxy-base.cfg.erb
@@ -1,5 +1,5 @@
global
-<% haproxy_global_options.sort.each do |key,val| -%>
+<% global_options.sort.each do |key,val| -%>
<% if val.is_a?(Array) -%>
<% val.each do |item| -%>
<%= key %> <%= item %>
@@ -10,7 +10,7 @@ global
<% end -%>
defaults
-<% haproxy_defaults_options.sort.each do |key,val| -%>
+<% defaults_options.sort.each do |key,val| -%>
<% if val.is_a?(Array) -%>
<% val.each do |item| -%>
<%= key %> <%= item %>
@@ -18,4 +18,4 @@ defaults
<% else -%>
<%= key %> <%= val %>
<% end -%>
-<% end -%> \ No newline at end of file
+<% end -%>
diff --git a/templates/haproxy_config_block.erb b/templates/haproxy_listen_block.erb
index 9223140..66abf1f 100644
--- a/templates/haproxy_config_block.erb
+++ b/templates/haproxy_listen_block.erb
@@ -1,6 +1,6 @@
-listen <%= name %> <%= listen_ip %>:<%= Array(ports).join(",#{listen_ip}:") %>
-<% config_options.sort.each do |key, val| -%>
+listen <%= name %> <%= ipaddress %>:<%= Array(ports).join(",#{ipaddress}:") %>
+<% options.sort.each do |key, val| -%>
<% if val.is_a?(Array) -%>
<% val.each do |item| -%>
<%= key %> <%= item %>