2015-10-18 17:24:27 +02: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
DOCUMENTATION = '''
- - -
module : win_acl_inheritance
2016-01-13 10:39:33 +01:00
version_added : " 2.1 "
2015-10-21 22:43:42 +02:00
short_description : Change ACL inheritance
2015-10-18 17:24:27 +02:00
description :
2015-10-21 22:43:42 +02: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 17:24:27 +02:00
options :
path :
description :
2015-10-21 22:43:42 +02:00
- Path to be used for changing inheritance
2015-10-18 17:24:27 +02:00
required : true
2015-10-21 22:43:42 +02:00
state :
2015-10-18 17:24:27 +02:00
description :
2015-10-21 22:43:42 +02: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 09:07:09 +01: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 17:24:27 +02:00
required : false
choices :
- no
- yes
default : no
author : Hans - Joachim Kliemeck ( @h0nIg )
'''
EXAMPLES = '''
# Playbook example
- - -
2015-10-21 22:43:42 +02:00
- name : Disable inherited ACE ' s
win_acl_inheritance :
path : ' C: \\ apache \\ '
state : absent
- name : Disable and copy inherited ACE ' s
2015-10-21 21:20:44 +02:00
win_acl_inheritance :
2015-10-18 17:24:27 +02:00
path : ' C: \\ apache \\ '
2015-10-21 22:43:42 +02:00
state : absent
reorganize : yes
2015-10-18 17:24:27 +02:00
2015-10-21 22:43:42 +02:00
- name : Enable and remove dedicated ACE ' s
2015-10-21 21:20:44 +02:00
win_acl_inheritance :
2015-10-18 17:24:27 +02:00
path : ' C: \\ apache \\ '
2015-10-21 22:43:42 +02:00
state : present
reorganize : yes
2015-10-18 17:24:27 +02:00
'''
2016-01-13 10:39:33 +01:00
RETURN = '''
'''