2015-10-18 15:24:27 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-02-25 02:09:54 +00:00
|
|
|
# Copyright: (c) 2015, Hans-Joachim Kliemeck <git@kliemeck.de>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
2015-10-18 15:24:27 +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-03-14 16:07:22 +00:00
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'core'}
|
|
|
|
|
2017-01-19 01:57:33 +00:00
|
|
|
DOCUMENTATION = r'''
|
2015-10-18 15:24:27 +00:00
|
|
|
---
|
|
|
|
module: win_acl_inheritance
|
2016-01-13 09:39:33 +00:00
|
|
|
version_added: "2.1"
|
2015-10-21 20:43:42 +00:00
|
|
|
short_description: Change ACL inheritance
|
2015-10-18 15:24:27 +00:00
|
|
|
description:
|
2015-10-21 20:43:42 +00:00
|
|
|
- Change ACL (Access Control List) inheritance and optionally copy inherited ACE's (Access Control Entry) to dedicated ACE's or vice versa.
|
2015-10-18 15:24:27 +00:00
|
|
|
options:
|
|
|
|
path:
|
|
|
|
description:
|
2015-10-21 20:43:42 +00:00
|
|
|
- Path to be used for changing inheritance
|
2018-02-25 02:09:54 +00:00
|
|
|
required: yes
|
2018-07-17 21:29:05 +00:00
|
|
|
type: path
|
2015-10-21 20:43:42 +00:00
|
|
|
state:
|
2015-10-18 15:24:27 +00:00
|
|
|
description:
|
2019-01-03 16:50:44 +00:00
|
|
|
- Specify whether to enable I(present) or disable I(absent) ACL inheritance.
|
|
|
|
type: str
|
2018-02-25 02:09:54 +00:00
|
|
|
choices: [ absent, present ]
|
2015-10-21 20:43:42 +00:00
|
|
|
default: absent
|
|
|
|
reorganize:
|
|
|
|
description:
|
2019-01-03 16:50:44 +00:00
|
|
|
- For P(state) = I(absent), indicates if the inherited ACE's should be copied from the parent directory.
|
|
|
|
This is necessary (in combination with removal) for a simple ACL instead of using multiple ACE deny entries.
|
|
|
|
- For P(state) = I(present), indicates if the inherited ACE's should be deduplicated compared to the parent directory.
|
|
|
|
This removes complexity of the ACL structure.
|
2018-02-25 02:09:54 +00:00
|
|
|
type: bool
|
2019-01-03 16:50:44 +00:00
|
|
|
default: no
|
2018-12-15 02:23:59 +00:00
|
|
|
seealso:
|
|
|
|
- module: win_acl
|
2019-03-06 19:40:02 +00:00
|
|
|
- module: win_file
|
|
|
|
- module: win_stat
|
2018-02-25 02:09:54 +00:00
|
|
|
author:
|
|
|
|
- Hans-Joachim Kliemeck (@h0nIg)
|
2015-10-18 15:24:27 +00:00
|
|
|
'''
|
|
|
|
|
2016-12-15 23:00:03 +00:00
|
|
|
EXAMPLES = r'''
|
2015-10-21 20:43:42 +00:00
|
|
|
- name: Disable inherited ACE's
|
|
|
|
win_acl_inheritance:
|
2016-12-15 23:00:03 +00:00
|
|
|
path: C:\apache
|
2015-10-21 20:43:42 +00:00
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Disable and copy inherited ACE's
|
2015-10-21 19:20:44 +00:00
|
|
|
win_acl_inheritance:
|
2016-12-15 23:00:03 +00:00
|
|
|
path: C:\apache
|
2015-10-21 20:43:42 +00:00
|
|
|
state: absent
|
2018-02-25 02:09:54 +00:00
|
|
|
reorganize: yes
|
2015-10-18 15:24:27 +00:00
|
|
|
|
2015-10-21 20:43:42 +00:00
|
|
|
- name: Enable and remove dedicated ACE's
|
2015-10-21 19:20:44 +00:00
|
|
|
win_acl_inheritance:
|
2016-12-15 23:00:03 +00:00
|
|
|
path: C:\apache
|
2015-10-21 20:43:42 +00:00
|
|
|
state: present
|
2018-02-25 02:09:54 +00:00
|
|
|
reorganize: yes
|
2015-10-18 15:24:27 +00:00
|
|
|
'''
|
2016-01-13 09:39:33 +00:00
|
|
|
|
2017-01-19 01:57:33 +00:00
|
|
|
RETURN = r'''
|
2016-01-13 09:39:33 +00:00
|
|
|
|
2016-12-15 23:00:03 +00:00
|
|
|
'''
|