2015-10-18 15:24:27 +00:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright 2015, Hans-Joachim Kliemeck <git@kliemeck.de>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# this is a windows documentation stub. actual code lives in the .ps1
# file of the same name
2016-12-06 10:35:25 +00:00
ANSIBLE_METADATA = { ' status ' : [ ' preview ' ] ,
' supported_by ' : ' core ' ,
' version ' : ' 1.0 ' }
2015-10-18 15:24:27 +00:00
DOCUMENTATION = '''
- - -
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
2015-10-18 15:24:27 +00:00
required : true
2015-10-21 20:43:42 +00:00
state :
2015-10-18 15:24:27 +00:00
description :
2015-10-21 20:43:42 +00:00
- Specify whether to enable I ( present ) or disable I ( absent ) ACL inheritance
required : false
choices :
- present
- absent
default : absent
reorganize :
description :
2016-03-22 08:07:09 +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.
2015-10-18 15:24:27 +00:00
required : false
choices :
- no
- yes
default : no
author : Hans - Joachim Kliemeck ( @h0nIg )
'''
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
2016-12-15 23:00:03 +00:00
reorganize : True
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
2016-12-15 23:00:03 +00:00
reorganize : True
2015-10-18 15:24:27 +00:00
'''
2016-01-13 09:39:33 +00:00
RETURN = '''
2016-12-15 23:00:03 +00:00
'''