--- # handlers file for exim4 # source: https://github.com/containers/buildah/issues/5440#issuecomment-2028911573 - name: Corriger le problème passt VS pasta ansible.builtin.file: state: hard force: true src: /usr/bin/passt dest: /usr/bin/pasta when: podman_fix_pasta become: true - name: Redémarrer l'instance ansible.builtin.reboot: become: true - name: Attendre que le port SSH soit ouvert ansible.builtin.wait_for: host: "{{ podman_ssh_host }}" port: "{{ podman_ssh_port }}" search_regex: OpenSSH delay: 30 timeout: 900 sleep: 10 delegate_to: 127.0.0.1 - name: Redémarrer rsyslog.service ansible.builtin.systemd: state: restarted name: rsyslog.service become: true