[Puppet Users] resource override

2012-05-30 Thread Papp Tamas
hi All, I'm a bit new to puppet. Is there a mailing list for puppet beginners?:) I have a service module called postfix, which defines file in a class: file { '/etc/postfix/main.cf': owner => "root", group => "root", mode => 644, content => template('po

Re: [Puppet Users] resource override

2012-05-30 Thread Ryan Coleman
On Wed, May 30, 2012 at 6:27 AM, Papp Tamas wrote: > hi All, Hi. > > I'm a bit new to puppet. Is there a mailing list for puppet beginners?:) Welcome! No, but this list is for all skill levels. > > However I'd like to use this: > > class jay { >    include jay::postfix > } > > class jay::pos

Re: [Puppet Users] resource override

2012-05-30 Thread Papp Tamas
On 05/30/2012 05:58 PM, Ryan Coleman wrote: The issue here is how your module is structured in relation to what Puppet expects to automatically find your manifests. In jay module, manifests directory, Puppet expects init.pp to have the jay class. If you want to have a jay::postfix class, Puppet

Re: [Puppet Users] resource override

2012-05-30 Thread Papp Tamas
On 05/31/2012 12:29 AM, Papp Tamas wrote: On 05/30/2012 05:58 PM, Ryan Coleman wrote: The issue here is how your module is structured in relation to what Puppet expects to automatically find your manifests. In jay module, manifests directory, Puppet expects init.pp to have the jay class. If y