galene-cloud/ansible/site.yml
Julien Riou e9b8b59306
fix: Facts were failing at start
Signed-off-by: Julien Riou <julien@riou.xyz>
2025-05-18 11:57:56 +02:00

25 lines
438 B
YAML

- name: Pre install
become: true
hosts:
- galene
gather_facts: false
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
retries: 30
delay: 10
- name: Install galene
become: true
hosts:
- galene
roles:
- certbot
- galene