fix: Add fix for pasta

This commit is contained in:
pulsar89.5 2024-06-08 03:09:43 +02:00
parent b11570c069
commit 00c837ad55
3 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,7 @@
# defaults file for podman
podman_configure_rsyslog: true
podman_fix_pasta: true
podman_ssh_host: "{{ inventory_hostname }}"
podman_ssh_port: 22

View File

@ -1,6 +1,16 @@
---
# 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

View File

@ -22,6 +22,7 @@
state: present
become: true
notify:
- Corriger le problème passt VS pasta
- Redémarrer l'instance
- Attendre que le port SSH soit ouvert