loop in shell until confirmed ready

artix
Matt C 3 years ago
parent 08b76618f7
commit b788e9940b

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

Loading…
Cancel
Save