svn commit: r271552 - head/usr.sbin/bsdinstall/scripts

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sat Sep 13 22:03:52 UTC 2014


Author: nwhitehorn
Date: Sat Sep 13 22:03:51 2014
New Revision: 271552
URL: http://svnweb.freebsd.org/changeset/base/271552

Log:
  Make the default choice for the chroot shell at the end be "No". This allows
  just pressing enter repeatedly to successfully install a reasonable system.

Modified:
  head/usr.sbin/bsdinstall/scripts/auto

Modified: head/usr.sbin/bsdinstall/scripts/auto
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/auto	Sat Sep 13 20:52:01 2014	(r271551)
+++ head/usr.sbin/bsdinstall/scripts/auto	Sat Sep 13 22:03:51 2014	(r271552)
@@ -252,7 +252,8 @@ if [ ! -z "$BSDINSTALL_FETCHDEST" ]; the
 fi
 
 dialog --backtitle "FreeBSD Installer" --title "Manual Configuration" \
-    --yesno "The installation is now finished. Before exiting the installer, would you like to open a shell in the new system to make any final manual modifications?" 0 0
+    --default-button no --yesno \
+   "The installation is now finished. Before exiting the installer, would you like to open a shell in the new system to make any final manual modifications?" 0 0
 if [ $? -eq 0 ]; then
 	clear
 	mount -t devfs devfs "$BSDINSTALL_CHROOT/dev"


More information about the svn-src-head mailing list