init
This commit is contained in:
14
tasks/install.yml
Normal file
14
tasks/install.yml
Normal 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
|
||||
Reference in New Issue
Block a user