From 122f5199e284aea01498f0a7e1ef3f9e4078b995 Mon Sep 17 00:00:00 2001 From: Manish Maharjan <112875432+mmaharjan-ccdc@users.noreply.github.com> Date: Mon, 1 Jul 2024 22:04:17 +0100 Subject: [PATCH 1/2] TO-249 add timeout --- tasks/Darwin.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tasks/Darwin.yml b/tasks/Darwin.yml index 4982d67..1f12e4d 100644 --- a/tasks/Darwin.yml +++ b/tasks/Darwin.yml @@ -51,4 +51,13 @@ - name: Set Europe/London time zone community.general.timezone: name: "Europe/London" + register: timezone_result become: true + +- name: Debug timezone + debug: + var: timezone_result + +- name: Wait for 5 seconds + wait_for: + timeout: 5 From 6265b37b542c4b3e29be7e851da07bb8718e74e2 Mon Sep 17 00:00:00 2001 From: Manish Maharjan <112875432+mmaharjan-ccdc@users.noreply.github.com> Date: Tue, 2 Jul 2024 00:11:06 +0100 Subject: [PATCH 2/2] TO-246 add ignore errors --- tasks/Darwin.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/Darwin.yml b/tasks/Darwin.yml index 1f12e4d..f9b01d3 100644 --- a/tasks/Darwin.yml +++ b/tasks/Darwin.yml @@ -61,3 +61,4 @@ - name: Wait for 5 seconds wait_for: timeout: 5 + ignore_errors: yes