On 06/29/2011 09:56 PM, treydock wrote:
<% apparray.each do |key,value| -%>

Key:<%= key %>
Path:<%= value['path'] %>
Command:<%= value['command'] %>

<% end -%>
inline_template() can be used as a here document.
that plus a puppet  shebang line makes testing
and presenting examples really easy.

Put the following in file here-hash.pp, then

chmod +x here-hash.pp
./here-hash.pp

--vagn

---------------8<----------------------------------------------------------------------------

#! /usr/bin/puppet apply

Exec {
path => "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
}

$prog_name = "here-hash.pp"

$apparray =  {
    app1 => { 'path' => '/test/path1', 'command' => 'cmd1' },
    app2 => { 'path' => '/test/path2', 'command' => 'cmd2' },
}

$result = inline_template("

<% apparray.each do |key,value| -%>

Key: <%= key %>
Path: <%= value['path'] %>
Command: <%= value['command'] %>

<% end -%>

")


node default {

notice("--- running: $program_name -------------------------------------")

        notice($result)

notice("--- done: $program_name ----------------------------------------")
}

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