- 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