7c3d04b87b
as improving error handling.
37 lines
1014 B
Bash
Executable File
37 lines
1014 B
Bash
Executable File
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
: ${DIALOG_OK=0}
|
|
: ${DIALOG_CANCEL=1}
|
|
: ${DIALOG_HELP=2}
|
|
: ${DIALOG_EXTRA=3}
|
|
: ${DIALOG_ITEM_HELP=4}
|
|
: ${DIALOG_ESC=255}
|
|
|
|
TERM=xterm; export TERM # XXX: serial consoles
|
|
|
|
dialog --backtitle "FreeBSD Installer" --title "Welcome" --extra-button --extra-label "Shell" --ok-label "Install" --cancel-label "Live CD" --yesno "Welcome to FreeBSD! Would you like to begin an installation or use the live CD?" 0 0
|
|
|
|
case $? in
|
|
$DIALOG_OK) # Install
|
|
BSDINSTALL_CONFIGCURRENT=yes; export BSDINSTALL_CONFIGCURRENT
|
|
trap true SIGINT # Ignore cntrl-C here
|
|
bsdinstall
|
|
if [ $? -eq 0 ]; then
|
|
dialog --backtitle "FreeBSD Installer" --title "Complete" --yes-label "Reboot" --no-label "Live CD" --yesno "Installation of FreeBSD complete! Would you like to reboot into the installed system now?" 0 0 && reboot
|
|
else
|
|
. /etc/rc.local
|
|
fi
|
|
;;
|
|
$DIALOG_CANCEL) # Live CD
|
|
exit 0
|
|
;;
|
|
$DIALOG_EXTRA) # Shell
|
|
clear
|
|
echo "When finished, type 'exit' to return to the installer."
|
|
/bin/sh
|
|
. /etc/rc.local
|
|
;;
|
|
esac
|
|
|