Displaying 1 result from an estimated 1 matches for "ruby_loops".
2012 Jun 20
3
How to iterate over an array? (with a counter)
Given an array, I''d like to iterate over it with a counter to produce
something like this from a template:
foo.0 = ARRAYVALUE0
foo.1 = ARRAYVALUE1
foo.2 = ARRAYVALUE2
(where ARRAYVALUEn is replaced by the value, and the foo.n is
incremented for each value)
The puppet templates support iteration, but I don''t see how to also
increment a counter to get the behaviour above? Is