xref: /freebsd/usr.sbin/bsdinstall/scripts/time (revision 2d9ff965b554840cfc0791f96623f6cf5795d40d)
12118f387SNathan Whitehorn#!/bin/sh
22118f387SNathan Whitehorn#-
32118f387SNathan Whitehorn# Copyright (c) 2011 Nathan Whitehorn
42118f387SNathan Whitehorn# All rights reserved.
52118f387SNathan Whitehorn#
62118f387SNathan Whitehorn# Redistribution and use in source and binary forms, with or without
72118f387SNathan Whitehorn# modification, are permitted provided that the following conditions
82118f387SNathan Whitehorn# are met:
92118f387SNathan Whitehorn# 1. Redistributions of source code must retain the above copyright
102118f387SNathan Whitehorn#    notice, this list of conditions and the following disclaimer.
112118f387SNathan Whitehorn# 2. Redistributions in binary form must reproduce the above copyright
122118f387SNathan Whitehorn#    notice, this list of conditions and the following disclaimer in the
132118f387SNathan Whitehorn#    documentation and/or other materials provided with the distribution.
142118f387SNathan Whitehorn#
152118f387SNathan Whitehorn# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
162118f387SNathan Whitehorn# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
172118f387SNathan Whitehorn# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
182118f387SNathan Whitehorn# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
192118f387SNathan Whitehorn# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
202118f387SNathan Whitehorn# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
212118f387SNathan Whitehorn# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
222118f387SNathan Whitehorn# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
232118f387SNathan Whitehorn# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
242118f387SNathan Whitehorn# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
252118f387SNathan Whitehorn# SUCH DAMAGE.
262118f387SNathan Whitehorn#
272118f387SNathan Whitehorn
28cc42ef53SBrad DavisBSDCFG_SHARE="/usr/share/bsdconfig"
29cc42ef53SBrad Davis. $BSDCFG_SHARE/common.subr || exit 1
30cc42ef53SBrad Davis
3109c4000aSAllan Jude# Select timezone
32*2d9ff965SEd Mastechroot $BSDINSTALL_CHROOT tzsetup -s
3309c4000aSAllan Jude
3409c4000aSAllan Jude# Switch to target timezone
3509c4000aSAllan Judesaved_TZ="$TZ"
3609c4000aSAllan JudeTZ="${BSDINSTALL_CHROOT}/etc/localtime"
3709c4000aSAllan Judeexport TZ
3809c4000aSAllan Jude
3909c4000aSAllan Jude# Set date
40c0e249d3SLars Kellogg-Stedmanexec 5>&1
41cc42ef53SBrad DavisDATE=$(bsddialog --backtitle "$OSNAME Installer" \
42268c47b9SAlfonso S. Siciliano	--title 'Time & Date' \
4309c4000aSAllan Jude	--ok-label 'Set Date' \
4409c4000aSAllan Jude	--cancel-label 'Skip' \
450e5c72c3SAlfonso S. Siciliano	--default-no \
4609c4000aSAllan Jude	--date-format '%Y%m%d%H%M.%S' \
47160ccec8SAlfonso S. Siciliano	--calendar '' 0 40 \
48c0e249d3SLars Kellogg-Stedman2>&1 1>&5) && date $DATE
49c0e249d3SLars Kellogg-Stedmanexec 5>&-
5009c4000aSAllan Jude
5109c4000aSAllan Jude# Set time
52c0e249d3SLars Kellogg-Stedmanexec 5>&1
53cc42ef53SBrad DavisTIME=$(bsddialog --backtitle "$OSNAME Installer" \
54268c47b9SAlfonso S. Siciliano	--title 'Time & Date' \
5509c4000aSAllan Jude	--ok-label 'Set Time' \
5609c4000aSAllan Jude	--cancel-label 'Skip' \
570e5c72c3SAlfonso S. Siciliano	--default-no \
5809c4000aSAllan Jude	--time-format '%H%M.%S' \
59d3f0c032SYuri Pankov	--timebox '' 0 40 \
60c0e249d3SLars Kellogg-Stedman2>&1 1>&5) && date $TIME
61c0e249d3SLars Kellogg-Stedmanexec 5>&-
6209c4000aSAllan Jude
6309c4000aSAllan Jude# Switch back
6409c4000aSAllan Judeif [ -n "$saved_TZ" ]; then
6509c4000aSAllan Jude	TZ="$saved_TZ"
6609c4000aSAllan Judeelse
6709c4000aSAllan Jude	unset TZ
6809c4000aSAllan Judefi
6909c4000aSAllan Judeunset saved_TZ
70