On Wed, Feb 2, 2011 at 9:47 AM, Rich Rauenzahn <rraue...@gmail.com> wrote:

> I'd like to include similar information that notice() spits out in a
> file I am generating -- basically so that anyone looking at the
> generated file (actually a file fragment)  could trace it back to the
> class that is generating the entry.
>

you could use $module_name, assuming you are using modules, or even better,

Here is some code to print all of the current variable names in the scopes
symbol table:

class fooperi {
  $foo = inline_template("<% scope.to_hash.keys.each do |k| %>
<%= k %><% end %>")
  notice($foo)
}

for you requirement, its probably best to print the name of the scope:

$foo = inline_template("<%= scope.to_s %>")



> Using $name within the file fragment is the closest I am getting to
> what I want -- is there anything better?
>
> --
> 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<puppet-users%2bunsubscr...@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/puppet-users?hl=en.
>
>

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