fix: Add fix for pasta
This commit is contained in:
parent
b11570c069
commit
00c837ad55
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user