I have just set up my puppet dashboard to be used as a ENC. This is for the 
time being the easiest way to get support guys to add nodes to classes. I 
have to use global parameters in my modules if I would like to declare 
parameters using dashboard as the ENC.

So I have a module which does this:


class resolver ($domain_name=$::domainname,
                $search_path=$::searchpath,
                $name_servers=$::nameservers, ){

   if ($name_servers == undef) {
       fail('ensure at least the namesever parameter is defined')
   }

...

The 3 global parameters can be passed in using dashboard ENC. I have a 
requirement to add a name_server parameter, which inherits the 
$::nameservers parameter.

How would I use a global parameter if I wanted to specify classes in the 
site.pp file?

Many thanks - Oli

-- 
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 post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to