summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorHans-Joachim Kliemeck <git@kliemeck.de>2016-03-22 09:07:09 +0100
committerHans-Joachim Kliemeck <git@kliemeck.de>2016-03-22 09:07:09 +0100
commit2ce5b4c5261f1559a55bff0b35d107d52d83d01a (patch)
treeb5a00d2650e689081d0f2e80b40c79253165a991 /windows
parentd2959fb7ed7c565c036e2a25503a8ba952d763f1 (diff)
downloadansible-modules-extras-2ce5b4c5261f1559a55bff0b35d107d52d83d01a.tar.gz
suggestion by @nitzmahone to not use Get-Attr in combination with ConvertTo-Bool, improved documentation regarding organize
Diffstat (limited to 'windows')
-rw-r--r--windows/win_acl_inheritance.ps13
-rw-r--r--windows/win_acl_inheritance.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/windows/win_acl_inheritance.ps1 b/windows/win_acl_inheritance.ps1
index 0d808bb8..1933a3a5 100644
--- a/windows/win_acl_inheritance.ps1
+++ b/windows/win_acl_inheritance.ps1
@@ -27,7 +27,8 @@ Set-Attr $result "changed" $false;
$path = Get-Attr $params "path" -failifempty $true
$state = Get-Attr $params "state" "absent" -validateSet "present","absent" -resultobj $result
-$reorganize = Get-Attr $params "reorganize" "no" -validateSet "no","yes" -resultobj $result | ConvertTo-Bool
+$reorganize = Get-Attr $params "reorganize" "no" -validateSet "no","yes" -resultobj $result
+$reorganize = $reorganize | ConvertTo-Bool
If (-Not (Test-Path -Path $path)) {
Fail-Json $result "$path file or directory does not exist on the host"
diff --git a/windows/win_acl_inheritance.py b/windows/win_acl_inheritance.py
index 0837bab3..a4bb90a4 100644
--- a/windows/win_acl_inheritance.py
+++ b/windows/win_acl_inheritance.py
@@ -43,7 +43,8 @@ options:
default: absent
reorganize:
description:
- - For P(state) = I(absent), indicates if the inherited ACE's should be copied. For P(state) = I(present), indicates if the inherited ACE's should be simplified.
+ - 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.
required: false
choices:
- no