More automated install support: if a script exists at /etc/installerconfig,
point the installer there and then reboot without asking questions. This design subject to future change.
This commit is contained in:
parent
c04b8a9f99
commit
e5b351e641
@ -45,6 +45,17 @@ else
|
|||||||
fi
|
fi
|
||||||
export TERM
|
export TERM
|
||||||
|
|
||||||
|
if [ -f /etc/installerconfig ]; then
|
||||||
|
bsdinstall script /etc/installerconfig
|
||||||
|
if [ $? -eq 0]; then
|
||||||
|
dialog --backtitle "FreeBSD Installer" --title "Complete" --no-cancel --ok-label "Reboot" --pause "Installation of FreeBSD complete! Rebooting in 10 seconds" 10 30 10
|
||||||
|
reboot
|
||||||
|
else
|
||||||
|
dialog --backtitle "FreeBSD Installer" --title "Error" --textbox /tmp/bsdinstall_log 0 0
|
||||||
|
fi
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
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
|
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
|
case $? in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user