From dce827c5f3f41135ac41a08de6d11b16746fa3b7 Mon Sep 17 00:00:00 2001 From: Saverio Miroddi Date: Mon, 14 Jun 2021 17:47:25 +0200 Subject: [PATCH] Add comment about EFI partitions mounts --- install-zfs.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install-zfs.sh b/install-zfs.sh index 475583e..8d74bcd 100755 --- a/install-zfs.sh +++ b/install-zfs.sh @@ -1385,6 +1385,11 @@ function prepare_fstab { local mountpoint=/boot/efi$((i + 1)) fi + # Wait for /boot to be mounted before mounting the EFI partitions; we use the services as dependency + # rather than a mount (`requires-mounts-for`) because the `/boot` path may exist but still not mounted. + # It's important to give a long enough timeout time; on relatively slow machines (e.g. virtual machines), + # a timeout of 1 will fail. + # chroot_execute "echo /dev/disk/by-uuid/$(blkid -s UUID -o value "${v_selected_disks[i]}"-part1) $mountpoint vfat nofail,x-systemd.requires=zfs-mount.service,x-systemd.device-timeout=10 0 0 >> /etc/fstab" done