I'm trying to add a class-limited override to a user section.  It
looks
something like this:

class usg123::biee-users inherits allusers {
    $somegroups = ['users','group2','group3']
    User['user1'] { groups => $somegroups, }
    User['user2'] { groups => $somegroups, }
    realize(
        User['user1'],
        User['user2'],
    )
}

I want to do this:

class usg123::biee-users inherits allusers {
    $somegroups = ['group1','group2','group3']
    gid => group4,
    User['user1'] { groups => $somegroups, }
    User['user2'] { groups => $somegroups, }
    realize(
        User['user1'],
        User['user2'],
    )
}

and have it apply to all of the users but it doesn't work.  The only
way I've found to do it is to list the gid in each user stanza like
this:

    User['user1'] { gid => group4, groups => $somegroups, }

but that is less than ideal.

Please email me with responses at:  pe...@usg.edu.

Thanks,

Peter

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to