I'm trying to puppetize my PgPool install.

PgPool uses the convention:
backend_hostname0 = 
backend_port0 = 
backend_weight0 = 
backend_data_directory0 = 
backend_flag0 = 

I'm using exported resources and concat to auto-detect postgres instances.

My template for this chunk looks like:
<% Array(ipaddress).zip(Array(pgport)).each do |ipaddress,port| -%>
<% backend = 0 %>
backend_hostname<%= backend -%> = <%= ipaddress %>
backend_port<%= backend -%> = <%= port %>
backend_weight<%= backend -%> = 1
backend_data_directory<%= backend -%> = '/db/pg'
backend_flag<%= backend -%> = 'ALLOW_TO_FAILOVER'
<% backend += 1 %>
<% end %>

I assumed that the backend = 0 / backend += 1 would work like a counter
as this  .each loop was iterated over.

However what I end up with is two stanza's with
backend_hostname0
...etc...
backend_hostname0
...etc...

any ideas on how to make this happen?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to