initial commit

This commit is contained in:
2025-11-23 11:29:12 +07:00
commit 382b57ed83
33 changed files with 2360 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
- name: Install Podman
ansible.builtin.apt:
name:
- podman
state: present
update_cache: yes
- name: Enable podman socket
ansible.builtin.systemd:
name: podman.socket
state: started
enabled: yes