Do other people have a consistent naming system for distinguishing
between sub-classes that are simply namespace children versus those
that actually inherit from another class?
ie the following setup
class foo { }
class foo::bar { }
vs.
class foo { }
class foo::bar inherits foo { }
I'm considering doing something like:
class foo { }
class foo::ham { }
class foo::foo_eggs inherits foo { }
but I don't really like it.
--
nigel
--
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.