This commit is contained in:
martin.fencl
2026-02-03 18:52:55 +01:00
parent 325cc99c09
commit 24df01f60a

View File

@@ -80,7 +80,12 @@
port: "{{ homarr_port }}" port: "{{ homarr_port }}"
timeout: 60 timeout: 60
- name: Check Homarr HTTP endpoint - name: Check Homarr HTTP endpoint (retry until ready)
ansible.builtin.uri: ansible.builtin.uri:
url: "http://127.0.0.1:{{ homarr_port }}/" url: "http://127.0.0.1:{{ homarr_port }}/"
status_code: 200 status_code: 200
register: homarr_http
retries: 30
delay: 3
until: homarr_http.status == 200
changed_when: false