On 28 December 2010 09:41, cyrus <matthewcer...@gmail.com> wrote: > Hi: > > I have something like this: > > class xinetd { > > ... some Puppet code ... > > class xinetd::telnet { > ... some Puppet code ... > } > } > > node 'host1' { > include xinetd::telnet > } >
Doesn't that mean you've declared xinetd and xinetd::xinetd::telnet? I think you want: class xinetd { ... class telnet { ... } ... } (which gives you xinetd and xinetd::telnet) -Naresh V. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@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.