--- - name: Make btrfs subvolume mount point. file: state: directory path: "{{ (partitioning_root_mount_point + subvolume.mountpoint) | quote }}" owner: root group: root mode: 0755 - name: Mount btrfs subvolume. command: > mount -t btrfs -o defaults,noatime,compress=zstd,subvol={{ subvolume.name }} {{ partitioning_priv_root_device_node }} {{ (partitioning_root_mount_point + subvolume.mountpoint) | quote }} changed_when: true