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

Allan Jude allanjude at FreeBSD.org
Thu Jul 14 00:41:20 UTC 2016


Author: allanjude
Date: Thu Jul 14 00:41:19 2016
New Revision: 302795
URL: https://svnweb.freebsd.org/changeset/base/302795

Log:
  Make the new 'set date and time' dialog default to skip
  
  X-MFC-With:	302790
  Requested by:	nwhitehorn

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

Modified: head/usr.sbin/bsdinstall/scripts/time
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/time	Thu Jul 14 00:40:24 2016	(r302794)
+++ head/usr.sbin/bsdinstall/scripts/time	Thu Jul 14 00:41:19 2016	(r302795)
@@ -40,6 +40,7 @@ DATE=$(dialog --backtitle 'FreeBSD Insta
 	--title 'Time & Date' \
 	--ok-label 'Set Date' \
 	--cancel-label 'Skip' \
+	--defaultno \
 	--date-format '%Y%m%d%H%M.%S' \
 	--calendar '' 2 40 \
 2>&1 1>&3) && date $DATE
@@ -51,6 +52,7 @@ TIME=$(dialog --backtitle 'FreeBSD Insta
 	--title 'Time & Date' \
 	--ok-label 'Set Time' \
 	--cancel-label 'Skip' \
+	--defaultno \
 	--time-format '%H%M.%S' \
 	--timebox '' 2 40 \
 2>&1 1>&3) && date $TIME


More information about the svn-src-head mailing list