loop in shell until confirmed ready

artix
Matt C 3 years ago
parent 08b76618f7
commit b788e9940b

@ -124,9 +124,19 @@ else
printf ": " printf ": "
read DISK read DISK
fi fi
CONFDONE="NOPE"
while [[ "$CONFDONE" == "NOPE" ]]; do
echo "Press enter to go to a shell." echo "Press enter to go to a shell."
read read
bash bash
printf "All set (and partitions mounted?) (y/N): "
read STAT
if [[ "$STAT" == "y" ]]; then
CONFDONE="YEP"
fi
done
fi fi
echo "Setting up base CrystalUX System" echo "Setting up base CrystalUX System"

Loading…
Cancel
Save