1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

win_reg_stat: Clean up parameter handling (#21380)

This commit is contained in:
Dag Wieers 2017-02-20 12:49:36 +01:00 committed by John R Barker
parent 958cbae7ba
commit 3c45c93d10

View file

@ -20,13 +20,13 @@
$ErrorActionPreference = "Stop"
$params = Parse-Args $args -supports_check_mode $true
$key = Get-AnsibleParam $params "key" -FailIfEmpty $true
$property = Get-AnsibleParam $params "property" -FailIfEmpty $false -default $null
$key = Get-AnsibleParam -obj $params -name "key" -type "str" -failifempty $true
$property = Get-AnsibleParam -obj $params -name "property" -type "str"
$result = @{
win_reg_stat = @{}
changed = $false
warnings = @()
win_reg_stat = @{}
}
Function Get-NetHiveName($hive) {