On 11/17/2012 03:51 AM, Steven Nemetz wrote:
Change your yaml file to:

files:
   - a
   - b
   - c

You can write it like this too:

files: - a
       - b
...

No need for that specific newline. I don't know if it's correct but it works.



Then puppet will read it in as an array. Pass the array to a define and
the define will run once for each element of the array

Thank you, that worked. Here is the example without using hiera, just the for benefit of future readers:

define class::mydefine (
    $file=$title,
) {
  file {"/tmp/$file":
    ensure  => file,
    owner   => root,
    group   => root,
    mode    => '0644',
    content => template('class/some.erb'),
  }
}


files = ['a','b','c']
class::mydefine{$files: }






--
Jakov Sosic
www.srce.unizg.hr

--
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