From 24df01f60a0df3f64abca910e20a3f47dbf9cb88 Mon Sep 17 00:00:00 2001 From: "martin.fencl" Date: Tue, 3 Feb 2026 18:52:55 +0100 Subject: [PATCH] edit --- update_homarr.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/update_homarr.yml b/update_homarr.yml index d81d10e..0051b77 100644 --- a/update_homarr.yml +++ b/update_homarr.yml @@ -80,7 +80,12 @@ port: "{{ homarr_port }}" timeout: 60 - - name: Check Homarr HTTP endpoint + - name: Check Homarr HTTP endpoint (retry until ready) ansible.builtin.uri: url: "http://127.0.0.1:{{ homarr_port }}/" status_code: 200 + register: homarr_http + retries: 30 + delay: 3 + until: homarr_http.status == 200 + changed_when: false