fix: ignore the error on first podman installation

This commit is contained in:
Lennard Brinkhaus 2023-09-16 14:34:38 +00:00
parent b767a7bb71
commit 6cffab2840

View File

@ -5,10 +5,11 @@
- name: "Get Podman version"
become: yes
become_user: podman_rootless
ansible.builtin.shell: " XDG_RUNTIME_DIR=/run/user/2534 echo v$(podman --version | cut -d' ' -f 3)"
ansible.builtin.shell: "XDG_RUNTIME_DIR=/run/user/2534 echo v$(podman --version | cut -d' ' -f 3)"
register: podman_active_version
changed_when: false
failed_when: false
ignore_errors: true
when: podman_version_check|bool
- name: "test"