“Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.”
Bill Waterson (Calvin & Hobbes)
> --
> You received this message because you are subscribed to the Google Groups "Puppet Users" group.
> To post to this group, send email to puppet...@googlegroups.com.
> To unsubscribe from this group, send email to puppet-users...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
>
Grep through your manifest and find out if you have included them in base or app stuff.
Den
I would strongly encourage you to never use inheritance with nodes and
only to use inheritance within a given module[1].
Instead of
node default {
include baseline
}
node app inherits default {
include appstuff
}
I would recommend
node default {}
node app {
include baseline # though, I recommend this is named 'common'
include appstuff
}
[1] - http://docs.puppetlabs.com/guides/style_guide.html#class-inheritance
-g
--
Garrett Honeycutt