summaryrefslogtreecommitdiff
path: root/windows/win_acl_inheritance.py
diff options
context:
space:
mode:
authorHans-Joachim Kliemeck <git@kliemeck.de>2015-10-21 21:20:44 +0200
committerHans-Joachim Kliemeck <git@kliemeck.de>2015-10-21 21:20:44 +0200
commit8de49a5deaa2827407183e8680007e922c19b5d6 (patch)
treebc66271779f82451855a17a03082e932301fabde /windows/win_acl_inheritance.py
parent95862793d0c00ee946ed891a021b8569cae9feab (diff)
downloadansible-modules-extras-8de49a5deaa2827407183e8680007e922c19b5d6.tar.gz
suggestions by @marcind
Diffstat (limited to 'windows/win_acl_inheritance.py')
-rw-r--r--windows/win_acl_inheritance.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/windows/win_acl_inheritance.py b/windows/win_acl_inheritance.py
index 784aa5f9..d5547349 100644
--- a/windows/win_acl_inheritance.py
+++ b/windows/win_acl_inheritance.py
@@ -27,7 +27,7 @@ module: win_acl_inheritance
version_added: "2.0"
short_description: Disable ACL inheritance
description:
- - Disable ACL inheritance and optionally converts ACE to dedicated ACE
+ - Disable ACL (Access Control List) inheritance and optionally converts ACE (Access Control Entry) to dedicated ACE
options:
path:
description:
@@ -48,12 +48,12 @@ EXAMPLES = '''
# Playbook example
---
- name: Disable and copy
- win_owner:
+ win_acl_inheritance:
path: 'C:\\apache\\'
copy: yes
- name: Disable
- win_owner:
+ win_acl_inheritance:
path: 'C:\\apache\\'
copy: no
'''