Hi everyone,
I have a quick question for everybody, does the class inheritance work for realizing ressource? Because I have the following class: # user_system.pp # # Realize the system users class user::user_system inherits user::virtual { # Realize system members Group <| tag == 'user_system' |> -> User <| tag == 'user_system' |> } And the class: # unixadmins.pp # # Realize the members of the Unix team and include any contractors class user::user_sysadmin inherits user::user_system { # Realize our team members Group <| tag == 'user_sysadmin' |> -> User <| tag == 'user_sysadmin' |> } each time a node uses the class 'user::user_sysadmin' the realisation of the class 'user::user_system' doesn't work, did I misunderstand the class inheritance? Regards, JM -- 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.