This repository has been archived on 2024-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
sysconfig/roles/container/tasks/podman.yml

12 lines
282 B
YAML

---
- name: container | Set podman storage driver to {{ rootfs }}
lineinfile:
path: /etc/containers/storage.conf
search_string: driver =
line: driver = "{{ rootfs }}"
state: present
owner: root
group: root
mode: 0644
when: rootfs in ['btrfs', 'zfs']