podman/tasks/Debian.yaml

7 lines
185 B
YAML
Raw Normal View History

2024-04-03 15:13:41 +00:00
---
- name: Ensure {{ podman_package }} installed
apt:
name: "{{ podman_package }}"
state: "{{ 'latest' if podman_version == 'latest' else 'present' }}"
update_cache: yes