Hi,

On 11/18/2013 01:50 AM, Jay Christopherson wrote:
> *versions.pp:*
> define parent::versions($version) {
> }
> 
> *child.pp*:
> class parent::child {
>     include parent
> 
>     notify{ "${version}": }
> }
> 
> Variables and defaults declared in a local scope are only available
> in *that scope and its children*
> *
> *
> Clearly, I'm missing something here.  I would expect this to print out
> the value of "$version", that is set by calling "create_resources" in
> the parent.

in this example, parent::child is *not* in fact a child of anything.
It's just a class in module called 'parent'.

Seeing as $version is a parameter of a defined type of your's, it
doesn't make sense to reference it anywhere else. Consider this:

class test {
  parent::versions { "apache" => "2.2", ruby => "1.9.3" }
  notify { "$version": }
}

What would you expect $version to be in this context?

Cheers,
Felix

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/528A2B29.2090800%40alumni.tu-berlin.de.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to