This commit is contained in:
Daniel Akulenok
2025-09-05 22:49:16 +02:00
commit 9cfd12e745
23 changed files with 1646 additions and 0 deletions

14
tasks/install.yml Normal file
View File

@@ -0,0 +1,14 @@
---
# 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