Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voxpupuli/puppet-groupmembership
Manage a group's members with Puppet
https://github.com/voxpupuli/puppet-groupmembership
bsd-puppet-module debian-puppet-module freebsd-puppet-module hacktoberfest linux-puppet-module openbsd-puppet-module puppet
Last synced: 2 months ago
JSON representation
Manage a group's members with Puppet
- Host: GitHub
- URL: https://github.com/voxpupuli/puppet-groupmembership
- Owner: voxpupuli
- License: apache-2.0
- Created: 2015-07-13T15:19:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T11:58:27.000Z (8 months ago)
- Last Synced: 2024-04-14T02:23:48.139Z (8 months ago)
- Topics: bsd-puppet-module, debian-puppet-module, freebsd-puppet-module, hacktoberfest, linux-puppet-module, openbsd-puppet-module, puppet
- Language: Ruby
- Size: 129 KB
- Stars: 3
- Watchers: 39
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Groupmembership
[![Build Status](https://github.com/voxpupuli/puppet-groupmembership/workflows/CI/badge.svg)](https://github.com/voxpupuli/puppet-groupmembership/actions?query=workflow%3ACI)
[![Release](https://github.com/voxpupuli/puppet-groupmembership/actions/workflows/release.yml/badge.svg)](https://github.com/voxpupuli/puppet-groupmembership/actions/workflows/release.yml)
[![Puppet Forge](https://img.shields.io/puppetforge/v/puppet/groupmembership.svg)](https://forge.puppetlabs.com/puppet/groupmembership)
[![Puppet Forge - downloads](https://img.shields.io/puppetforge/dt/puppet/groupmembership.svg)](https://forge.puppetlabs.com/puppet/groupmembership)
[![Puppet Forge - endorsement](https://img.shields.io/puppetforge/e/puppet/groupmembership.svg)](https://forge.puppetlabs.com/puppet/groupmembership)
[![Puppet Forge - scores](https://img.shields.io/puppetforge/f/puppet/groupmembership.svg)](https://forge.puppetlabs.com/puppet/groupmembership)
[![puppetmodule.info docs](http://www.puppetmodule.info/images/badge.png)](http://www.puppetmodule.info/m/puppet-groupmembership)
[![Apache-2.0](https://img.shields.io/github/license/voxpupuli/puppet-groupmembership.svg)](LICENSE)A simple type to manage the membership of a group, from the perspective of the group.
It is worth noting, if you are using this model of membership, you should not
be using the `groups` parameter on the user type.```Puppet
groupmembership { 'trees':
members => ['oak','elm']
}
```Pretty easy, right?
There is also an `exclusive` option to ensure that the only members of a group
are those that have been expressed as part of the members parameter.## Requirements
On OSX, you will need the `plist` gem.