2017-07-31 18:10:57 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-02-25 02:09:54 +00:00
|
|
|
# Copyright: (c) 2017, Andrew Saraceni <andrew.saraceni@gmail.com>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
2017-07-31 18:10:57 +00:00
|
|
|
|
|
|
|
# this is a windows documentation stub. actual code lives in the .ps1
|
|
|
|
# file of the same name
|
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2017-07-31 18:10:57 +00:00
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'}
|
|
|
|
|
|
|
|
DOCUMENTATION = r'''
|
|
|
|
---
|
2017-08-02 02:06:39 +00:00
|
|
|
module: win_group_membership
|
2017-07-31 18:10:57 +00:00
|
|
|
version_added: "2.4"
|
|
|
|
short_description: Manage Windows local group membership
|
|
|
|
description:
|
|
|
|
- Allows the addition and removal of local, service and domain users,
|
|
|
|
and domain groups from a local group.
|
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- Name of the local group to manage membership on.
|
2018-02-25 02:09:54 +00:00
|
|
|
required: yes
|
2017-07-31 18:10:57 +00:00
|
|
|
members:
|
|
|
|
description:
|
|
|
|
- A list of members to ensure are present/absent from the group.
|
|
|
|
- Accepts local users as username, .\username, and SERVERNAME\username.
|
|
|
|
- Accepts domain users and groups as DOMAIN\username and username@DOMAIN.
|
|
|
|
- Accepts service users as NT AUTHORITY\username.
|
2018-02-25 02:09:54 +00:00
|
|
|
required: yes
|
2017-07-31 18:10:57 +00:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Desired state of the members in the group.
|
2018-02-25 02:09:54 +00:00
|
|
|
choices: [ absent, present ]
|
2017-07-31 18:10:57 +00:00
|
|
|
default: present
|
|
|
|
author:
|
|
|
|
- Andrew Saraceni (@andrewsaraceni)
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = r'''
|
|
|
|
- name: Add a local and domain user to a local group
|
2017-08-02 02:06:39 +00:00
|
|
|
win_group_membership:
|
2017-07-31 18:10:57 +00:00
|
|
|
name: Remote Desktop Users
|
|
|
|
members:
|
|
|
|
- NewLocalAdmin
|
|
|
|
- DOMAIN\TestUser
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Remove a domain group and service user from a local group
|
2017-08-02 02:06:39 +00:00
|
|
|
win_group_membership:
|
2017-07-31 18:10:57 +00:00
|
|
|
name: Backup Operators
|
|
|
|
members:
|
|
|
|
- DOMAIN\TestGroup
|
|
|
|
- NT AUTHORITY\SYSTEM
|
|
|
|
state: absent
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = r'''
|
|
|
|
name:
|
|
|
|
description: The name of the target local group.
|
|
|
|
returned: always
|
|
|
|
type: string
|
|
|
|
sample: Administrators
|
|
|
|
added:
|
|
|
|
description: A list of members added when C(state) is C(present); this is
|
|
|
|
empty if no members are added.
|
|
|
|
returned: success and C(state) is C(present)
|
|
|
|
type: list
|
|
|
|
sample: ["NewLocalAdmin", "DOMAIN\\TestUser"]
|
|
|
|
removed:
|
|
|
|
description: A list of members removed when C(state) is C(absent); this is
|
|
|
|
empty if no members are removed.
|
|
|
|
returned: success and C(state) is C(absent)
|
|
|
|
type: list
|
|
|
|
sample: ["DOMAIN\\TestGroup", "NT AUTHORITY\\SYSTEM"]
|
|
|
|
members:
|
|
|
|
description: A list of all local group members at completion; this is empty
|
|
|
|
if the group contains no members.
|
|
|
|
returned: success
|
|
|
|
type: list
|
|
|
|
sample: ["DOMAIN\\TestUser", "NewLocalAdmin"]
|
|
|
|
'''
|