git: abd9424590ba - main - bsdinstall: Tweak pkgbase/dist set labels

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Sat, 11 Oct 2025 17:22:44 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=abd9424590ba37ac10e92723ad6428f0448024c1

commit abd9424590ba37ac10e92723ad6428f0448024c1
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-10-09 17:01:36 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-10-11 17:22:19 +0000

    bsdinstall: Tweak pkgbase/dist set labels
    
    Have the button labels refer to the artifact type directly (distribution
    sets / packages), and use "Tech Preview" as packaged base is no longer
    experimental.
    
    Reviewed by:    ivy, cperciva
    Sponsored by:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D52999
---
 usr.sbin/bsdinstall/scripts/auto | 4 ++--
 usr.sbin/bsdinstall/scripts/jail | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/usr.sbin/bsdinstall/scripts/auto b/usr.sbin/bsdinstall/scripts/auto
index 61d52065af2a..8058b1a41dbf 100755
--- a/usr.sbin/bsdinstall/scripts/auto
+++ b/usr.sbin/bsdinstall/scripts/auto
@@ -209,9 +209,9 @@ if [ ! -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
 	PKGBASE=yes
 else
 	bsddialog --backtitle "$OSNAME Installer" --title "Select Installation Type" \
-		--yes-label "Traditional" --no-label "Packages (Experimental)" --yesno \
+		--yes-label "Distribution Sets" --no-label "Packages (Tech Preview)" --yesno \
 		$PKGBASE_DEFAULT_BUTTON \
-		"Would you like to install the base system using traditional distribution sets or packages (experimental)?" 0 0
+		"Would you like to install the base system using traditional distribution sets or packages (technology preview)?" 0 0
 	if [ $? -eq 1 ]; then
 		PKGBASE=yes
 	fi
diff --git a/usr.sbin/bsdinstall/scripts/jail b/usr.sbin/bsdinstall/scripts/jail
index f2c7ef2b37de..3b1b2ee98fff 100755
--- a/usr.sbin/bsdinstall/scripts/jail
+++ b/usr.sbin/bsdinstall/scripts/jail
@@ -175,8 +175,8 @@ fi
 
 if [ ! "$nonInteractive" == "YES" ]; then
 	bsddialog --backtitle "$OSNAME Installer" --title "Select Installation Type" \
-	    --yes-label "Traditional" --no-label "Packages (Experimental)" --yesno \
-	    "Would you like to install the base system using traditional distribution sets or packages (experimental)?" 0 0
+	    --yes-label "Distribution Sets" --no-label "Packages (Tech Preview)" --yesno \
+	    "Would you like to install the base system using traditional distribution sets or packages (technology preview)?" 0 0
 	if [ $? -eq 1 ]; then
 		PKGBASE=yes
 	fi