blob: a148c5e2057cb354471d2086018742b188524887 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{- $machineRole := default "host" (index . "machineRole") -}}
{{- if ne $machineRole "host" -}}
# Rootless podman storage configuration: VM ext4.
[storage]
driver = "overlay"
[storage.options.overlay]
{{- else -}}
# Rootless podman storage configuration: host btrfs.
# Changing storage drivers requires `podman system reset --force`.
[storage]
driver = "btrfs"
{{- end }}
|