From ddb7e269918a5b8bc64546e1635ab7453adde909 Mon Sep 17 00:00:00 2001 From: Saverio Miroddi Date: Mon, 14 Jun 2021 18:54:32 +0200 Subject: [PATCH] Backports: Make EFI partitions fstab pass value 0, like in the modern procedure Doesn't matter much. --- install-zfs.backports.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-zfs.backports.sh b/install-zfs.backports.sh index cf412bd..4c1590b 100755 --- a/install-zfs.backports.sh +++ b/install-zfs.backports.sh @@ -1385,7 +1385,7 @@ function prepare_fstab { # 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 1 >> /etc/fstab" + 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 # The service is created in the configure_boot_pool_import() step.