From 25ec3c73bbe36a42828fe1ad420cf5684bfe6d75 Mon Sep 17 00:00:00 2001 From: David Goodell Date: Sun, 29 Aug 2021 21:14:03 -0400 Subject: [PATCH] add longer wait time before trying to mount --- templates/configure.sh.tpl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/configure.sh.tpl b/templates/configure.sh.tpl index dcc99fb..b7d119d 100644 --- a/templates/configure.sh.tpl +++ b/templates/configure.sh.tpl @@ -37,6 +37,8 @@ then then echo "Data partition not mounted, mounting and adding to fstab" echo "/dev/nvme1n1p1 ${mount_point} xfs defaults,noatime 1 1" >> /etc/fstab + echo "Giving device time to prepare for mount..." + sleep 20 mount ${mount_point} fi