From dac74b20c706b1f73986fb40dac27ed85c1d2850 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 9 Dec 2025 15:29:05 -0500 Subject: [PATCH] bsdinstall: Drop "Technology preview" from package sets And refer to dist sets as "legacy." This matches our expectation for FreeBSD 16.0. Reviewed by: cperciva Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D54156 --- 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 2204b33ae10..e9d6da149a8 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 "Distribution Sets" --no-label "Packages (Tech Preview)" --yesno \ + --yes-label "Distribution Sets" --no-label "Packages" --yesno \ $PKGBASE_DEFAULT_BUTTON \ - "Would you like to install the base system using traditional distribution sets or packages (technology preview)?" 0 0 + "Would you like to install the base system using legacy distribution sets or packages?" 0 0 if [ $? -eq 1 ]; then PKGBASE=yes fi diff --git a/usr.sbin/bsdinstall/scripts/jail b/usr.sbin/bsdinstall/scripts/jail index e4238ac0a68..5ebeb3eeeac 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 "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 + --yes-label "Distribution Sets" --no-label "Packages" --yesno \ + "Would you like to install the base system using legacy distribution sets or packages?" 0 0 if [ $? -eq 1 ]; then PKGBASE=yes fi