From 11def78ededd9fb365d2a7aa43bdc762e50d0e53 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 6 Nov 2025 20:36:37 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20timezone=20set?= =?UTF-8?q?up=20in=20setupacdc.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the timezone setup to use a named timezone instead of a community.general.timezone, which is no longer available. This change simplifies the configuration and makes it easier to manage different timezones. --- tasks/setupacdc.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 68b0272..fcde755 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -181,7 +181,8 @@ purge: true - name: Set timezone to {{ localization_timezone }} - community.general.timezone: + # community.general.timezone: + timezone: name: '{{ localization_timezone }}' notify: Restart sshd tags: [timezone]