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