Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Jul 2016 00:41:19 +0000 (UTC)
From:      Allan Jude <allanjude@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r302795 - head/usr.sbin/bsdinstall/scripts
Message-ID:  <201607140041.u6E0fJeh031888@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607140041.u6E0fJeh031888>