On Aug 31, 10:09 am, Kenneth Holter <kenneho....@gmail.com> wrote: > Hello all. > > Are there any rule of thumb regarding using "inherits" versus "include"? For > example, if I'm creating the class "syslog::base" which should servere as a > building block for syslog clients, should I go for a "class syslog::client > inherits syslog::base { <something> }" or "class syslog::client { include > syslog::base }"?
Directly from the horse's mouth (we have training this week)... Inherits should only be used when you actually intend to use inherits with overrides. If you don't it makes the code less understandable than if you just used includes. It's more a code understandability issue than functionality. Apparently there are many instances of both questions and good answers to this question in the group archives too. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@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.