From 96044ed3ce931bd15f7febc02b2806ee8cfdfebe Mon Sep 17 00:00:00 2001 From: rubenb Date: Fri, 27 Oct 2023 11:09:58 +0200 Subject: [PATCH] reconfigure timezone --- roles/config-base-debian-os/tasks/main.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/roles/config-base-debian-os/tasks/main.yaml b/roles/config-base-debian-os/tasks/main.yaml index e2d9d95..bac460b 100644 --- a/roles/config-base-debian-os/tasks/main.yaml +++ b/roles/config-base-debian-os/tasks/main.yaml @@ -15,9 +15,16 @@ - name: reconfigure timezone Europe/Madrid debconf: name: tzdata - question: tzdata/Zones/Europe - value: Madrid + question: "{{ item.question }}" + value: "{{ item.value }}" vtype: select + with_items: + - question: "tzdata/Zones/Europe" + value: "Madrid" + - question: "tzdata/Areas" + value: "Europe" + - question: "tzdata/Zones/Etc" + value: "UTC" #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++