All Questions
1 question
3
votes
1
answer
884
views
Puppet: Enumerating all users within a group
Is there any way to enumerate an array of all users within a group within Puppet, either as a fact or something so I can do something like this?
$users = enumusers('wheel')
each($users) |$user| {
...