fix: false checkup

This commit is contained in:
Lennard Brinkhaus 2023-09-16 14:48:47 +00:00
parent 73e627807c
commit 8722399626

View File

@ -17,10 +17,10 @@
msg: "{{ podman_active_version }}"
- include_tasks: setup_user.yml
when: (not podman_version_check|bool) or (podman_active_version.stdout is defined and podman_active_version.stdout != podman_version)
when: (not podman_version_check|bool) or podman_active_version.stdout is not defined or podman_active_version.stdout != podman_version
- include_tasks: install.yml
when: (not podman_version_check|bool) or (podman_active_version.stdout is defined and podman_active_version.stdout != podman_version)
when: (not podman_version_check|bool) or podman_active_version.stdout is not defined or podman_active_version.stdout != podman_version
- include_tasks: systemd-services.yml
when: (not podman_version_check|bool) or (podman_active_version.stdout is defined and podman_active_version.stdout != podman_version)
when: (not podman_version_check|bool) or podman_active_version.stdout is not defined or podman_active_version.stdout != podman_version