So a module structure looks like:
/puppet/modules/ssh/{files, templates, manifests}
/puppet/modules/ssh/manifests/init.pp
Now the init.pp can get to be a large file, so its common to break things
out like .e.g.
install.pp
config.pp
service.pp
And then the init.pp will look like:
class ssh
include ssh::install, ssh::config, ssh::service
You can also place parameters in:
/puppet/modules/ssh/manifests/params.pp
Do you create another params type class but something that might act at a
global level? If so, what kind of things did you end up putting there?
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.