mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-30 16:51:41 +00:00
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
23dbd4334a
commit
4ba25c5ab2
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=245706
@ -45,6 +45,17 @@ else
|
||||
fi
|
||||
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
|
||||
|
||||
case $? in
|
||||
|
Loading…
Reference in New Issue
Block a user