mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
bsdinstall: rename "Live CD" to "Live System"
This uses more generic wording in the FreeBSD installer, when offering the user to use the system booted without running the installer. The updated wording is also reflected in freebsd-version(1). Reviewed by: emaste Sponsored by: The FreeBSD Foundation Differential revision: https://reviews.freebsd.org/D43233 (cherry picked from commit 19bb1886be4f366e922f0be359874683a243624a)
This commit is contained in:
parent
68584c97ec
commit
66be605375
2 changed files with 5 additions and 5 deletions
|
|
@ -111,7 +111,7 @@ To determine the version of the currently running userland:
|
|||
/bin/freebsd-version -u
|
||||
.Ed
|
||||
.Pp
|
||||
To inspect a system being repaired using a live CD:
|
||||
To inspect a system being repaired using a live system:
|
||||
.Bd -literal -offset indent
|
||||
mount -rt ufs /dev/ada0p2 /mnt
|
||||
env ROOT=/mnt /mnt/bin/freebsd-version -ku
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ if [ -f /etc/installerconfig ]; then
|
|||
exit
|
||||
fi
|
||||
|
||||
bsddialog --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
|
||||
bsddialog --backtitle "FreeBSD Installer" --title "Welcome" --extra-button --extra-label "Shell" --ok-label "Install" --cancel-label "Live System" --yesno "Welcome to FreeBSD! Would you like to begin an installation or use the live system?" 0 0
|
||||
|
||||
case $? in
|
||||
$BSDDIALOG_OK) # Install
|
||||
|
|
@ -70,7 +70,7 @@ $BSDDIALOG_OK) # Install
|
|||
trap true SIGINT # Ignore cntrl-C here
|
||||
bsdinstall
|
||||
if [ $? -eq 0 ]; then
|
||||
bsddialog --backtitle "FreeBSD Installer" --title "Complete" --ok-label "Reboot" --extra-button --extra-label "Shutdown" --cancel-label "Live CD" --yesno "Installation of FreeBSD complete! Would you like to reboot into the installed system now?" 0 0
|
||||
bsddialog --backtitle "FreeBSD Installer" --title "Complete" --ok-label "Reboot" --extra-button --extra-label "Shutdown" --cancel-label "Live System" --yesno "Installation of FreeBSD complete! Would you like to reboot into the installed system now?" 0 0
|
||||
|
||||
case $? in
|
||||
$BSDDIALOG_OK) # Reboot
|
||||
|
|
@ -90,7 +90,7 @@ $BSDDIALOG_OK) # Install
|
|||
sleep 1
|
||||
done
|
||||
;;
|
||||
$BSDDIALOG_CANCEL) # Live CD
|
||||
$BSDDIALOG_CANCEL) # Live System
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
|
@ -98,7 +98,7 @@ $BSDDIALOG_OK) # Install
|
|||
. "$0"
|
||||
fi
|
||||
;;
|
||||
$BSDDIALOG_CANCEL) # Live CD
|
||||
$BSDDIALOG_CANCEL) # Live System
|
||||
exit 0
|
||||
;;
|
||||
$BSDDIALOG_EXTRA) # Shell
|
||||
|
|
|
|||
Loading…
Reference in a new issue