galene-cloud/ansible/site.yml
Julien Riou 36b23ed093
feat(ansible): Wait for infra to be ready
Signed-off-by: Julien Riou <julien@riou.xyz>
2025-05-11 09:44:26 +02:00

22 lines
382 B
YAML

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