On 2012-28-11 17:43, Ben Schofield wrote:
Is there anyway to "inherit" the argument list from a puppet define so
that a wrapping define does not have to declare the same variables twice?

No. Sorry.

For example

define my_define($arg1, $arg2, $arg3){
   ...
}

define wrapper {
   #modify arg2
   ...
   #call my_define passing args 1-3

}

#Now call the wrapper and pass in args for my_define
wrapper{'example': arg1 => 1,
                      arg2 => 2,
                      arg3 => 3}

--

- henrik


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