On Thu, Jun 23, 2011 at 3:09 AM, Bruce Bushby <bruce.bus...@gmail.com> wrote:
> Thanks Nigel, appreciate the heads up!
>
> I'm finding that puppet module are great when you want a module for
> "ssh" or a module for "sudoers"  ...but I can't find an example where
> there is a module called "os" which contains "ssh.pp" ,
> "prod_sudoers.pp" , "dev_sudoers.pp" , "userauth.pp",
> "iptables.pp" ....etc

Here are the file mappings to class names so that the autoloader finds them.

$modulepath/foo/manifests/init.pp -> class foo { ... }
$modulepath/foo/manifests/bar.pp -> class foo::bar { ... }
$modulepath/foo/manifests/bar/baz.pp -> class foo::bar::baz { ... }

Is that what you meant Bruce?

>
> Then /etc/puppet/manifest/site.pp would include the module "os"
>
> and then /etc/puppet/modules/os/manifest/init.pp  would include the
> various "pp" components for various hosts lists.
>
> Is this even possible?
>
>
>
>
> On Jun 20, 5:50 pm, Nigel Kersten <ni...@puppetlabs.com> wrote:
>> On Sat, Jun 18, 2011 at 1:29 AM, Bruce Bushby <bruce.bus...@gmail.com>wrote:
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> > Hello
>>
>> > I'm new to large scale puppet deployment and was hoping the list could
>> > offer some pointers on "module layout"
>>
>> > My initial "layout" was motivated by a need to "harden" our Linux
>> > systems. I grouped the various hardening configs into:
>>
>> > Kernel
>> > OS
>> > Network
>> > Shell
>> > Files
>> > Application
>>
>> > I'm hoping I can create the same module structure within puppet.
>>
>> In my experience, these module categories are too broad and it will make
>> maintenance difficult.
>>
>> You don't want to get too fine-grained with your modules, but if you keep
>> things this broad, you'll end up having lots of complicated relationships
>> like Class[os::foo] -> Class[files::foo]
>>
>> I made this mistake on a large deployment and regretted it.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Puppet Users" group.
> To post to this group, send email to puppet-users@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.
>
>



-- 
Nigel Kersten
Product, Puppet Labs
@nigelkersten

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@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.

Reply via email to