bad line endings?

This commit is contained in:
sean
2019-07-10 12:10:16 -07:00
parent def54b1a4f
commit a3c89343ac
+7 -6
View File
@@ -58,13 +58,14 @@ bootmirror=""; rootraidz=""; for disk in `echo "$disks"`; do bootmirror="$bootmi
# refresh drives or there are missing partitions # refresh drives or there are missing partitions
partprobe 2>/dev/null 1>/dev/null partprobe 2>/dev/null 1>/dev/null
# wait for the partitions to show up # wait for the partitions to show up
for disk in `echo "$disks"` for disk in `echo "$disks"`
do do
while ! [ -e "/dev/disk/by-id/${disk}-part3" ]; do while ! [ -e "/dev/disk/by-id/${disk}-part3" ]; do
partprobe 2>/dev/null 1>/dev/null partprobe 2>/dev/null 1>/dev/null
sleep 1 echo "Waiting for ${disk} partition 3 to update..."
done sleep 3
done
done done
echo "" echo ""