ansible-edda/playbooks/tasks/services/setup/00-podman.yml

11 lines
169 B
YAML
Raw Normal View History

- name: Install podman
apt:
name: podman
register: podman_install
# Required for podman.
- name: Reboot machine
reboot:
when:
podman_install is changed