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

Ken Smith kensmith at FreeBSD.org
Tue Oct 18 11:29:10 UTC 2011


Author: kensmith
Date: Tue Oct 18 11:29:10 2011
New Revision: 226507
URL: http://svn.freebsd.org/changeset/base/226507

Log:
  Escape the newline so we get a proper line continuation.  Without this
  the text of the menu selections doesn't get displayed properly and it
  makes the installer appear to lock up for no obvious reason.
  
  Reviewed by:	nwhitehorn

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

Modified: head/usr.sbin/bsdinstall/scripts/auto
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/auto	Tue Oct 18 09:46:52 2011	(r226506)
+++ head/usr.sbin/bsdinstall/scripts/auto	Tue Oct 18 11:29:10 2011	(r226507)
@@ -158,7 +158,7 @@ finalconfig() {
 	REVISIT=$(dialog --backtitle "FreeBSD Installer" \
 	    --title "Final Configuration" --no-cancel --menu \
 	    "Setup of your FreeBSD system is nearly complete. You can now modify your configuration choices or apply more complex changes using a shell." 0 0 0 \
-		"Exit" "Apply configuration and exit installer"
+		"Exit" "Apply configuration and exit installer" \
 		"Add User" "Add a user to the system" \
 		"Root Password" "Change root password" \
 		"Hostname" "Set system hostname" \


More information about the svn-src-head mailing list