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

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