Version information
released Apr 5th 2016
Start using this module
Add this module to your Puppetfile:
mod 'thomasb-group_memberships', '0.1.0'
Learn more about managing modules with a PuppetfileDocumentation
thomasb/group_memberships — version 0.1.0 Apr 5th 2016
group_memberships
Examples
This will make sure that the user john is member of users & wheel
group_memberships { 'john':
ensure => present,
groups => [ 'users', 'wheel' ],
}
This will make sure that the user john is member users & wheel and will purge all other memberships for this user.
group_memberships { 'john':
ensure => present,
groups => [ 'users', 'wheel' ],
purge => true,
}