--- - name: Mount btrfs subvolumes. include_tasks: mount_btrfs-subvolume.yml with_items: "{{ partitioning_priv_btrfs_subvolumes }}" loop_control: loop_var: subvolume - name: Make EFI mount point. file: path: "{{ partitioning_root_mount_point }}/boot/efi" state: directory recurse: true owner: root group: root mode: 0700 - name: Mount EFI boot partition. mount: state: mounted src: "{{ partitioning_priv_esp_device_node }}" path: "{{ partitioning_root_mount_point }}/boot/efi" fstype: vfat