dialog for final choices
This commit is contained in:
parent
b6bd2e63b3
commit
61cef5aff3
1 changed files with 4 additions and 23 deletions
27
arch.sh
27
arch.sh
|
@ -64,26 +64,7 @@ genfstab -U /mnt >> /mnt/etc/fstab
|
||||||
|
|
||||||
curl http://lukesmith.xyz/larbs/chroot.sh > /mnt/chroot.sh && arch-chroot /mnt bash chroot.sh && rm /mnt/chroot.sh
|
curl http://lukesmith.xyz/larbs/chroot.sh > /mnt/chroot.sh && arch-chroot /mnt bash chroot.sh && rm /mnt/chroot.sh
|
||||||
|
|
||||||
echo "Eject CD/ROM? [y/N]"
|
dialog --defaultno --title "Final Qs" --yesno "Eject CD/ROM (if any)?" 5 30 && eject
|
||||||
read yn
|
dialog --defaultno --title "Final Qs" --yesno "Reboot computer?" 5 30 && reboot
|
||||||
case $yn in
|
dialog --defaultno --title "Final Qs" --yesno "Return to chroot environment?" 6 30 && arch-chroot /mnt
|
||||||
[Yy]* ) eject ;;
|
clear
|
||||||
[yes]* ) eject ;;
|
|
||||||
[Yes]* ) eject ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
echo "Reboot now? [y/N]"
|
|
||||||
read yn
|
|
||||||
case $yn in
|
|
||||||
[Yy]* ) reboot ;;
|
|
||||||
[yes]* ) reboot ;;
|
|
||||||
[Yes]* ) reboot ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
echo "Return to chroot environment? [y/N]"
|
|
||||||
read yn
|
|
||||||
case $yn in
|
|
||||||
[Yy]* ) arch-chroot /mnt ;;
|
|
||||||
[yes]* ) arch-chroot /mnt ;;
|
|
||||||
[Yes]* ) arch-chroot /mnt ;;
|
|
||||||
esac
|
|
||||||
|
|
Loading…
Reference in a new issue