mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
win_timezone: Add diff support, integration tests (#25284)
* win_timezone: Add diff support, integration tests This PR includes: - Diff support - Returns both previous_timezone and timezone - Adds integration tests - More examples - Improved documentation * Merged the changes from jborean93's PR
This commit is contained in:
parent
f8d027b1ba
commit
1c9a570ffe
5 changed files with 173 additions and 30 deletions
|
@ -21,55 +21,66 @@
|
|||
|
||||
$params = Parse-Args $args -supports_check_mode $true
|
||||
$check_mode = Get-AnsibleParam -obj $params -name "_ansible_check_mode" -type "bool" -default $false
|
||||
$diff_support = Get-AnsibleParam -obj $params -name "_ansible_diff" -type "bool" -default $false
|
||||
|
||||
$timezone = Get-AnsibleParam -obj $params -name "timezone" -type "str" -failifempty $true
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
previous_timezone = $timezone
|
||||
timezone = $timezone
|
||||
}
|
||||
|
||||
Try {
|
||||
# Get the current timezone set
|
||||
$currentTZ = $(tzutil.exe /g)
|
||||
$result.previous_timezone = $(tzutil.exe /g)
|
||||
If ($LASTEXITCODE -ne 0) {
|
||||
Throw "An error occurred when getting the current machine's timezone setting."
|
||||
}
|
||||
|
||||
If ( $currentTZ -eq $timezone ) {
|
||||
Exit-Json $result "$timezone is already set on this machine"
|
||||
if ( $result.previous_timezone -eq $timezone ) {
|
||||
Exit-Json $result "Timezone '$timezone' is already set on this machine"
|
||||
} Else {
|
||||
$tzExists = $false
|
||||
#Check that timezone can even be set (if it is listed from tzutil as an available timezone to the machine)
|
||||
# Check that timezone is listed as an available timezone to the machine
|
||||
$tzList = $(tzutil.exe /l)
|
||||
If ($LASTEXITCODE -ne 0) {
|
||||
Throw "An error occurred when listing the available timezones."
|
||||
}
|
||||
|
||||
$tzExists = $false
|
||||
ForEach ($tz in $tzList) {
|
||||
If ( $tz -eq $timezone ) {
|
||||
$tzExists = $true
|
||||
break
|
||||
}
|
||||
}
|
||||
if (-not $tzExists) {
|
||||
Fail-Json $result "The specified timezone: $timezone isn't supported on the machine."
|
||||
}
|
||||
|
||||
If ( $tzExists ) {
|
||||
if (-not $check_mode) {
|
||||
tzutil.exe /s "$timezone"
|
||||
If ($LASTEXITCODE -ne 0) {
|
||||
Throw "An error occurred when setting the specified timezone with tzutil."
|
||||
}
|
||||
$newTZ = $(tzutil.exe /g)
|
||||
If ($LASTEXITCODE -ne 0) {
|
||||
Throw "An error occurred when getting the current machine's timezone setting."
|
||||
}
|
||||
if ($check_mode) {
|
||||
$result.changed = $true
|
||||
} else {
|
||||
tzutil.exe /s "$timezone"
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Throw "An error occurred when setting the specified timezone with tzutil."
|
||||
}
|
||||
|
||||
If ( $timezone -eq $newTZ ) {
|
||||
$result.changed = $true
|
||||
}
|
||||
} else {
|
||||
$new_timezone = $(tzutil.exe /g)
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Throw "An error occurred when getting the current machine's timezone setting."
|
||||
}
|
||||
|
||||
if ($timezone -eq $new_timezone) {
|
||||
$result.changed = $true
|
||||
}
|
||||
} Else {
|
||||
Fail-Json $result "The specified timezone: $timezone isn't supported on the machine."
|
||||
}
|
||||
|
||||
if ($diff_support) {
|
||||
$result.diff = @{
|
||||
before = "$($result.previous_timezone)`n"
|
||||
after = "$timezone`n"
|
||||
}
|
||||
}
|
||||
}
|
||||
} Catch {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue