From 2f5c7f9f25097806369d0bb605cc1db579a888b4 Mon Sep 17 00:00:00 2001 From: Shahar Golshani Date: Fri, 15 Nov 2024 02:27:07 +0200 Subject: [PATCH] Migrate win_timezone module to ansible.windows repo from ansible.community repo --- plugins/modules/win_timezone.py | 9 +++++---- tests/integration/targets/win_timezone/aliases | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/plugins/modules/win_timezone.py b/plugins/modules/win_timezone.py index d7f6adba..43766f47 100644 --- a/plugins/modules/win_timezone.py +++ b/plugins/modules/win_timezone.py @@ -10,6 +10,7 @@ short_description: Sets Windows machine timezone description: - Sets machine time to the specified timezone. +version_added: 2.6.0 options: timezone: description: @@ -33,19 +34,19 @@ EXAMPLES = r''' - name: Set timezone to 'Romance Standard Time' (GMT+01:00) - community.windows.win_timezone: + ansible.windows.win_timezone: timezone: Romance Standard Time - name: Set timezone to 'GMT Standard Time' (GMT) - community.windows.win_timezone: + ansible.windows.win_timezone: timezone: GMT Standard Time - name: Set timezone to 'Central Standard Time' (GMT-06:00) - community.windows.win_timezone: + ansible.windows.win_timezone: timezone: Central Standard Time - name: Set timezime to Pacific Standard time and disable Daylight Saving time adjustments - community.windows.win_timezone: + ansible.windows.win_timezone: timezone: Pacific Standard Time_dstoff ''' diff --git a/tests/integration/targets/win_timezone/aliases b/tests/integration/targets/win_timezone/aliases index 215e0b06..423ce391 100644 --- a/tests/integration/targets/win_timezone/aliases +++ b/tests/integration/targets/win_timezone/aliases @@ -1 +1 @@ -shippable/windows/group4 +shippable/windows/group2