[Puppet Users] Re: Problems with autoloading modules

2011-01-14 Thread luke.bigum
On Jan 13, 7:04 pm, Daniel Pittman wrote: > Luke, I don't see a CLA for you (but I confess that I am new at the > process of checking that, so please forgive me if you have one already > and I messed up.) > > This change isn't huge, but it would be nice to get a CLA for you – > especially because

[Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread Ahmed El Gamil
Thanks Nigel !, This really needs some enhancement .. On Jan 13, 6:54 pm, Nigel Kersten wrote: > On Thu, Jan 13, 2011 at 8:33 AM, Arnau Bria wrote: > > On Thu, 13 Jan 2011 06:39:28 -0800 (PST) > > luke.bigum luke.bigum wrote: > > >> Just to give you some examples of auto loading complex modules

[Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread Ahmed El Gamil
Thanks Nigel !, This really needs some enhancement .. On Jan 13, 6:54 pm, Nigel Kersten wrote: > On Thu, Jan 13, 2011 at 8:33 AM, Arnau Bria wrote: > > On Thu, 13 Jan 2011 06:39:28 -0800 (PST) > > luke.bigum luke.bigum wrote: > > >> Just to give you some examples of auto loading complex modules

Re: [Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread Daniel Pittman
On Thu, Jan 13, 2011 at 08:54, Nigel Kersten wrote: > On Thu, Jan 13, 2011 at 8:33 AM, Arnau Bria wrote: >> On Thu, 13 Jan 2011 06:39:28 -0800 (PST) >> luke.bigum luke.bigum wrote: >> >>> Just to give you some examples of auto loading complex modules with >>> multiple classes and how that relates

Re: [Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread Nigel Kersten
On Thu, Jan 13, 2011 at 8:33 AM, Arnau Bria wrote: > On Thu, 13 Jan 2011 06:39:28 -0800 (PST) > luke.bigum luke.bigum wrote: > >> Just to give you some examples of auto loading complex modules with >> multiple classes and how that relates to class names: >> >> modules/puppet/init.pp => include pup

Re: [Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread Felix Frank
> modules/puppet/master/woof.pp => include puppet::master::woof Because, you know...some puppet masters should really bark at you on occasion :-) [I love it] -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to

Re: [Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread Arnau Bria
On Thu, 13 Jan 2011 06:39:28 -0800 (PST) luke.bigum luke.bigum wrote: > Just to give you some examples of auto loading complex modules with > multiple classes and how that relates to class names: > > modules/puppet/init.pp => include puppet > modules/puppet/master.pp => include puppet::master > m

[Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread luke.bigum
On Jan 13, 2:34 pm, Arnau Bria wrote: > > Option 2, move the class declaration of common_puppet_conf out of > > init.pp and into common_puppet_conf.pp in the same directory, then you > > should be able to do this (note the use of the namespace > > common_puppet, which is your module name): > > > i

Re: [Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread Arnau Bria
On Thu, 13 Jan 2011 02:41:31 -0800 (PST) luke.bigum luke.bigum wrote: > Hi Arnau, Hi Luke, > Your module folder name is called 'common_puppet' but you're class is > called 'common_puppet_conf'. O!! did not read about this requisite. > Option 1, rename the common_puppet class to common_pup

[Puppet Users] Re: Problems with autoloading modules

2011-01-13 Thread luke.bigum
Hi Arnau, Your module folder name is called 'common_puppet' but you're class is called 'common_puppet_conf'. Option 1, rename the common_puppet class to common_puppet_conf, as according to your grep, the only class inside common_puppet/init.pp is "class common_puppet_conf". The class definition i