galene-cloud/ansible/site.yml
Julien Riou b7917a9d80
fix: Wait for connection to be ready
Ping was not working, using wait_for_connection instead.

Signed-off-by: Julien Riou <julien@riou.xyz>
2025-10-19 10:43:10 +02:00

25 lines
458 B
YAML

- name: Pre install
become: true
hosts:
- galene
gather_facts: false
tasks:
- name: Wait for infrastructure to be ready
ansible.builtin.wait_for_connection:
delay: 10
timeout: 300
- name: Update repositories
ansible.builtin.apt:
update_cache: true
upgrade: full
retries: 30
delay: 10
- name: Install galene
become: true
hosts:
- galene
roles:
- certbot
- galene