Files
ansible-podman/tasks/install.yml
Daniel Akulenok 9cfd12e745 init
2025-09-05 22:49:16 +02:00

15 lines
320 B
YAML

---
# Install Podman packages
- name: Update package cache (Debian/Ubuntu)
ansible.builtin.apt:
cache_valid_time: 3600
when: ansible_os_family == "Debian"
- name: Install Podman and related packages
ansible.builtin.package:
name: "{{ podman_packages }}"
state: present
notify:
- restart podman