Hi,

I have a hash variable defined on a node:
        $vips = {
                wha => {
                        'vip1.mycompany.net' => {
                                name => 'wha.mycompany.net',
                                vip => '10.4.229.132',
                                certificate_name => 'wha.mycompany.net',
                        },
                        'vip2.mycompany.net' => {
                                name => 'wha.mycompany.com',
                                vip => '10.4.229.136',
                                certificate_name => 'wha.mycompany.com',
                        },
                        ... # I have around 15 VIP's on each node
              },

On my template I have:
<% vips.each_pair do |system, system_values| -%>
<% if system == "wha" then -%>
<% system_values.each_pair do |server_name, server_name_values| -%>
#<%= server_name_values['name'] %>
<% if server_name_values.has_key?("certificate_name") -%>
Listen <%= server_name_values['vip'] %>:80
Listen <%= server_name_values['vip'] %>:443
<% else -%>
Listen <%= server_name_values['vip'] %>:80
<% end -%><% end -%><% end -%><% end -%>

My file on the servers keeps changing on each puppet run. The HASH variable
order is what changes from one run to another(first run it defines
wha.mycompany.net first on second run it defines wha.mycompany.com first).

Is this a bug or I'm doing something stupid here?

Thanks,

Wagner Sartori Junior

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

Reply via email to