win_share - Implement append paramtere for access rules (#59469)
* win_share - Implement append paramtere for access rules * changed fragment * add test * missing bracket * removed whitespace * Wrong number of lines * Forgot the actual new parameter in the test * community review * Change option names * version update * Update tests.yml * Add idempotence to rule_action: add
This commit is contained in:
parent
ed54b9b441
commit
584824f560
4 changed files with 120 additions and 54 deletions
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- "win_share - Implement append parameter for access rules (https://github.com/ansible/ansible/issues/59237)"
|
|
@ -47,6 +47,7 @@ $check_mode = Get-AnsibleParam -obj $params -name "_ansible_check_mode" -type "b
|
|||
|
||||
$name = Get-AnsibleParam -obj $params -name "name" -type "str" -failifempty $true
|
||||
$state = Get-AnsibleParam -obj $params -name "state" -type "str" -default "present" -validateset "present","absent"
|
||||
$rule_action = Get-AnsibleParam -obj $params -name "rule_action" -type "str" -default "set" -validateset "set","add"
|
||||
|
||||
if (-not (Get-Command -Name Get-SmbShare -ErrorAction SilentlyContinue)) {
|
||||
Fail-Json $result "The current host does not support the -SmbShare cmdlets required by this module. Please run on Server 2012 or Windows 8 and later"
|
||||
|
@ -151,6 +152,7 @@ If ($state -eq "absent") {
|
|||
|
||||
# remove permissions
|
||||
$permissions = Get-SmbShareAccess -Name $name
|
||||
if($rule_action -eq "set") {
|
||||
ForEach ($permission in $permissions) {
|
||||
If ($permission.AccessControlType -eq "Deny") {
|
||||
$cim_count = 0
|
||||
|
@ -213,6 +215,23 @@ If ($state -eq "absent") {
|
|||
}
|
||||
}
|
||||
}
|
||||
} ElseIf ($rule_action -eq "add") {
|
||||
ForEach($permission in $permissions) {
|
||||
If ($permission.AccessControlType -eq "Deny") {
|
||||
If ($permissionDeny.Contains($permission.AccountName)) {
|
||||
$permissionDeny.Remove($permission.AccountName)
|
||||
}
|
||||
} ElseIf ($permission.AccessControlType -eq "Allow") {
|
||||
If ($permissionFull.Contains($permission.AccountName) -and $permission.AccessRight -eq "Full") {
|
||||
$permissionFull.Remove($permission.AccountName)
|
||||
} ElseIf ($permissionChange.Contains($permission.AccountName) -and $permission.AccessRight -eq "Change") {
|
||||
$permissionChange.Remove($permission.AccountName)
|
||||
} ElseIf ($permissionRead.Contains($permission.AccountName) -and $permission.AccessRight -eq "Read") {
|
||||
$permissionRead.Remove($permission.AccountName)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# add missing permissions
|
||||
ForEach ($user in $permissionRead) {
|
||||
|
|
|
@ -75,9 +75,16 @@ options:
|
|||
type: bool
|
||||
default: no
|
||||
version_added: "2.4"
|
||||
rule_action:
|
||||
description: Whether to add or set (replace) access control entries.
|
||||
type: str
|
||||
choices: [ set, add ]
|
||||
default: set
|
||||
version_added: "2.10"
|
||||
author:
|
||||
- Hans-Joachim Kliemeck (@h0nIg)
|
||||
- David Baumann (@daBONDi)
|
||||
- Shachaf Goldstein (@Shachaf92)
|
||||
'''
|
||||
|
||||
EXAMPLES = r'''
|
||||
|
|
|
@ -398,6 +398,44 @@
|
|||
- set_acl_actual_again.stdout_lines[2] == 'Change|Allow|BUILTIN\\Users'
|
||||
- set_acl_actual_again.stdout_lines[3] == 'Full|Allow|BUILTIN\\Administrators'
|
||||
|
||||
- name: Append ACLs on share
|
||||
win_share:
|
||||
name: "{{test_win_share_name}}"
|
||||
state: present
|
||||
path: "{{test_win_share_path}}"
|
||||
change: Remote Desktop Users
|
||||
rule_action: add
|
||||
register: append_acl
|
||||
|
||||
- name: get actual share ACLs
|
||||
win_shell: foreach ($acl in Get-SmbShareAccess -Name '{{test_win_share_name}}') { Write-Host "$($acl.AccessRight)|$($acl.AccessControlType)|$($acl.AccountName)" }
|
||||
register: append_acl_actual
|
||||
|
||||
- name: assert Append ACLs on share
|
||||
assert:
|
||||
that:
|
||||
- append_acl is changed
|
||||
- append_acl_actual.stdout_lines|length == 5
|
||||
- append_acl_actual.stdout_lines[0] == 'Full|Deny|BUILTIN\Remote Desktop Users'
|
||||
- append_acl_actual.stdout_lines[1] == 'Read|Allow|BUILTIN\\Guests'
|
||||
- append_acl_actual.stdout_lines[2] == 'Change|Allow|BUILTIN\\Users'
|
||||
- append_acl_actual.stdout_lines[3] == 'Full|Allow|BUILTIN\\Administrators'
|
||||
- append_acl_actual.stdout_lines[4] == 'Change|Allow|BUILTIN\\Remote Desktop Users'
|
||||
|
||||
- name: Append ACLs on share (idempotent)
|
||||
win_share:
|
||||
name: "{{test_win_share_name}}"
|
||||
state: present
|
||||
path: "{{test_win_share_path}}"
|
||||
change: Remote Desktop Users
|
||||
rule_action: add
|
||||
register: append_acl_again
|
||||
|
||||
- name: assert Append ACLs on share (idempotent)
|
||||
assert:
|
||||
that:
|
||||
- not append_acl_again is changed
|
||||
|
||||
- name: remove share check
|
||||
win_share:
|
||||
name: "{{test_win_share_name}}"
|
||||
|
|
Loading…
Reference in a new issue