Files
rproxy/roles/podman/tasks/main.yml

15 lines
260 B
YAML
Raw Normal View History

---
- name: Install podman
ansible.builtin.yum:
name:
- podman
- podman-compose
- podman-docker
- buildah
update_cache: yes
- name: Enable Podman
ansible.builtin.systemd:
name: podman
state: started
enabled: yes