Skip to content

Commit

Permalink
Fix check mode support in win_group (#61977)
Browse files Browse the repository at this point in the history
* Fix check mode support in win_group

* Fix copy/paste error
  • Loading branch information
briantist authored and jborean93 committed Sep 15, 2019
1 parent a0bec0b commit d361ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/modules/windows/win_group.ps1
Expand Up @@ -5,7 +5,7 @@

#Requires -Module Ansible.ModuleUtils.Legacy

$params = Parse-Args $args;
$params = Parse-Args $args -supports_check_mode $true
$check_mode = Get-AnsibleParam -obj $params -name "_ansible_check_mode" -type "bool" -default $false

$name = Get-AnsibleParam -obj $params -name "name" -type "str" -failifempty $true
Expand Down

0 comments on commit d361ff4

Please sign in to comment.