mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
win_timezone: Add RETURN information (#24571)
And cosmetic cleanup. This fixes ansible/ansible-modules-extras#1767
This commit is contained in:
parent
d0d33262cb
commit
4847613725
2 changed files with 5 additions and 8 deletions
|
@ -19,15 +19,14 @@
|
|||
# WANT_JSON
|
||||
# POWERSHELL_COMMON
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
win_timezone = @{}
|
||||
}
|
||||
|
||||
$params = Parse-Args $args -supports_check_mode $true
|
||||
$check_mode = Get-AnsibleParam -obj $params -name "_ansible_check_mode" -type "bool" -default $false
|
||||
|
||||
$timezone = Get-AnsibleParam -obj $params -name "timezone" -failifempty $true -resultobj $result
|
||||
$timezone = Get-AnsibleParam -obj $params -name "timezone" -type "str" -failifempty $true
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
}
|
||||
|
||||
Try {
|
||||
# Get the current timezone set
|
||||
|
|
|
@ -38,8 +38,6 @@ options:
|
|||
description:
|
||||
- Timezone to set to. Example Central Standard Time
|
||||
required: true
|
||||
default: null
|
||||
aliases: []
|
||||
|
||||
author: Phil Schwartz
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue