Re: [Puppet Users] Module organization: file serving

2011-08-30 Thread Arnau Bria
On Tue, 30 Aug 2011 09:44:59 -0400 Nan Liu wrote: Hi Nan, > No, files in the manifests directory are not accesible through source > => puppet:///... The manifests directory is intended to be > inaccessible to the agent since it contains files that should be > compiled on the master. thanks. now

Re: [Puppet Users] Module organization: file serving

2011-08-30 Thread Nan Liu
On Tue, Aug 30, 2011 at 5:47 AM, Arnau Bria wrote: > On Mon, 29 Aug 2011 10:04:42 -0700 > Nigel Kersten wrote: > >> On Mon, Aug 29, 2011 at 8:23 AM, Arnau Bria wrote: > > Hi Nigel, > > I think my question was not clear: > >> > MODULE_PATH >> > |-module_name >> >        |-files >> >        |-manif

Re: [Puppet Users] Module organization: file serving

2011-08-30 Thread Arnau Bria
On Mon, 29 Aug 2011 10:04:42 -0700 Nigel Kersten wrote: > On Mon, Aug 29, 2011 at 8:23 AM, Arnau Bria wrote: Hi Nigel, I think my question was not clear: > > MODULE_PATH > > |-module_name > >|-files > >|-manifests > >|-foo.pp > >|-bar > >

Re: [Puppet Users] Module organization: file serving

2011-08-29 Thread Nigel Kersten
On Mon, Aug 29, 2011 at 8:23 AM, Arnau Bria wrote: > Hi all, > > Puppet's module organization looks like: > > MODULE_PATH > |-module_name >|-files >|-manifests >|-foo.pp >|-bar >|-bar.pp > > > And module autoloading will find

[Puppet Users] Module organization: file serving

2011-08-29 Thread Arnau Bria
Hi all, Puppet's module organization looks like: MODULE_PATH |-module_name |-files |-manifests |-foo.pp |-bar |-bar.pp And module autoloading will find bar.pp if I define it as module_name::bar::bar My question is: is the