27 lines
1006 B
YAML
27 lines
1006 B
YAML
---
|
|
- name: Gather variables for each operating system
|
|
include_vars: "{{ ansible_distribution | lower }}.yml"
|
|
|
|
- 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)"
|
|
register: podman_active_version
|
|
changed_when: false
|
|
failed_when: false
|
|
ignore_errors: true
|
|
when: podman_version_check|bool
|
|
|
|
- name: "test"
|
|
debug:
|
|
msg: "{{ podman_active_version }}"
|
|
|
|
- include_tasks: setup_user.yml
|
|
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 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 not defined or podman_active_version.stdout != podman_version
|