aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bsdinstall/scripts/jail
diff options
context:
space:
mode:
authorBrad Davis <brd@FreeBSD.org>2022-05-24 15:49:06 +0000
committerBrad Davis <brd@FreeBSD.org>2022-05-24 15:49:06 +0000
commitcc42ef5328963ee55c3305b136e9a86145f24594 (patch)
tree020a2a870c3a73c719055bd2f0608425e6ac37c4 /usr.sbin/bsdinstall/scripts/jail
parent33005c89c6bca456b57c39acd20b01346b61916c (diff)
downloadsrc-cc42ef5328963ee55c3305b136e9a86145f24594.tar.gz
src-cc42ef5328963ee55c3305b136e9a86145f24594.zip
bsdinstall: allow whitelabeling the scripts
Approved by: allanjude, asiciliano Differential Revision: https://reviews.freebsd.org/D35197 Sponsored by: Rubicon Communications, LLC ("Netgate")
Diffstat (limited to 'usr.sbin/bsdinstall/scripts/jail')
-rwxr-xr-xusr.sbin/bsdinstall/scripts/jail6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bsdinstall/scripts/jail b/usr.sbin/bsdinstall/scripts/jail
index 849016ac0f3d..97460d92034a 100755
--- a/usr.sbin/bsdinstall/scripts/jail
+++ b/usr.sbin/bsdinstall/scripts/jail
@@ -44,7 +44,7 @@ error() {
if [ -n "$1" ]; then
msg="$1\n\n"
fi
- bsddialog --backtitle "FreeBSD Installer" --title "Abort" \
+ bsddialog --backtitle "$OSNAME Installer" --title "Abort" \
--no-label "Exit" --yes-label "Restart" --yesno \
"${msg}An installation step has been aborted. Would you like to restart the installation or exit the installer?" 0 0
if [ $? -ne $BSDDIALOG_OK ]; then
@@ -84,7 +84,7 @@ if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
then
exec 3>&1
EXTRA_DISTS=$(echo $DISTMENU | xargs -o bsddialog \
- --backtitle "FreeBSD Installer" \
+ --backtitle "$OSNAME Installer" \
--title "Distribution Select" --no-cancel --separate-output \
--checklist "Choose optional system components to install:" \
0 0 0 \
@@ -130,7 +130,7 @@ if [ ! "$nonInteractive" == "YES" ]
then
bsdinstall services
- bsddialog --backtitle "FreeBSD Installer" --title "Add User Accounts" --yesno \
+ bsddialog --backtitle "$OSNAME Installer" --title "Add User Accounts" --yesno \
"Would you like to add users to the installed system now?" 0 0 && \
bsdinstall adduser
fi