arch installation mostly works with zfsbootmgr
This commit is contained in:
commit
1444f05d9c
19 changed files with 496 additions and 0 deletions
11
roles/base/tasks/archinstall/initialize_efi.yaml
Normal file
11
roles/base/tasks/archinstall/initialize_efi.yaml
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
- name: Inspect EFI boot partitions
|
||||
become: true
|
||||
command: "blkid {{ item }}"
|
||||
loop: "{{ base_efi_partitions | default([]) }}"
|
||||
register: blkid
|
||||
|
||||
- name: Format EFI partitions fat32
|
||||
command: "mkfs.vfat -v -F 32 -n EFI {{ item.item }}"
|
||||
loop: "{{ blkid.results | rejectattr('stdout', 'contains', 'TYPE=\"vfat\"') }}"
|
||||
register: mkfs_vfat_efi
|
Loading…
Add table
Add a link
Reference in a new issue