You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
546 B

---
- 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