This change moves the QEMU configuration for multiarch builds into a dedicated role. Furthermore the execution will always be treated as unchanged, unless an error occured!
6 lines
226 B
YAML
6 lines
226 B
YAML
- name: Ensure QEMU configuration for multiarch podman builds
|
|
become: yes
|
|
shell: podman run --rm --privileged docker.io/multiarch/qemu-user-static --reset -p yes
|
|
changed_when: False
|
|
when: ansible_os_family == 'Debian'
|