head	1.19;
access;
symbols
	RELENG_9:1.17.0.2;
locks; strict;
comment	@# @;


1.19
date	2013.07.08.00.33.55;	author svnexp;	state Exp;
branches;
next	1.18;

1.18
date	2013.07.08.00.32.27;	author svnexp;	state Exp;
branches;
next	1.17;

1.17
date	2013.06.25.00.35.22;	author svnexp;	state Exp;
branches
	1.17.2.1;
next	1.16;

1.16
date	2013.06.19.01.02.40;	author svnexp;	state Exp;
branches;
next	1.15;

1.15
date	2013.06.03.00.43.28;	author svnexp;	state Exp;
branches;
next	1.14;

1.14
date	2013.06.03.00.32.49;	author svnexp;	state Exp;
branches;
next	1.13;

1.13
date	2013.06.02.00.37.30;	author svnexp;	state Exp;
branches;
next	1.12;

1.12
date	2013.06.02.00.36.46;	author svnexp;	state Exp;
branches;
next	1.11;

1.11
date	2013.06.01.00.35.21;	author svnexp;	state Exp;
branches;
next	1.10;

1.10
date	2013.05.15.00.26.05;	author svnexp;	state Exp;
branches;
next	1.9;

1.9
date	2013.04.23.00.30.01;	author svnexp;	state Exp;
branches;
next	1.8;

1.8
date	2013.04.23.00.27.07;	author svnexp;	state Exp;
branches;
next	1.7;

1.7
date	2012.12.25.11.03.38;	author svnexp;	state Exp;
branches;
next	1.6;

1.6
date	2012.12.25.09.37.00;	author svnexp;	state Exp;
branches;
next	1.5;

1.5
date	2012.11.17.04.41.47;	author svnexp;	state Exp;
branches;
next	1.4;

1.4
date	2012.11.17.01.54.39;	author svnexp;	state Exp;
branches;
next	1.3;

1.3
date	2012.09.20.23.44.13;	author dteske;	state Exp;
branches;
next	1.2;

1.2
date	2012.09.18.22.28.42;	author dteske;	state Exp;
branches;
next	1.1;

1.1
date	2012.07.14.03.16.57;	author dteske;	state Exp;
branches;
next	;

1.17.2.1
date	2013.06.25.00.35.22;	author svnexp;	state dead;
branches;
next	1.17.2.2;

1.17.2.2
date	2013.07.07.20.03.18;	author svnexp;	state Exp;
branches;
next	1.17.2.3;

1.17.2.3
date	2014.03.27.04.02.36;	author svnexp;	state Exp;
branches;
next	;


desc
@@


1.19
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/252987
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@#!/bin/sh
#-
# Copyright (c) 2011-2013 Devin Teske
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 252987 2013-07-07 18:51:44Z dteske $
#
############################################################ INCLUDES

BSDCFG_SHARE="/usr/share/bsdconfig"
. $BSDCFG_SHARE/common.subr || exit 1
f_dprintf "%s: loading includes..." "$0"
f_include $BSDCFG_SHARE/dialog.subr
f_include $BSDCFG_SHARE/mustberoot.subr
f_include $BSDCFG_SHARE/strings.subr
f_include $BSDCFG_SHARE/timezone/continents.subr
f_include $BSDCFG_SHARE/timezone/countries.subr
f_include $BSDCFG_SHARE/timezone/iso3166.subr
f_include $BSDCFG_SHARE/timezone/menus.subr
f_include $BSDCFG_SHARE/timezone/zones.subr

BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="090.timezone"
f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr

ipgm=$( f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" )
[ $? -eq $SUCCESS -a "$ipgm" ] && pgm="$ipgm"

############################################################ CONFIGURATION

#
# Standard pathnames
#
_PATH_DB="/var/db/zoneinfo"
_PATH_WALL_CMOS_CLOCK="/etc/wall_cmos_clock"

############################################################ GLOBALS

#
# Options
#
REALLYDOIT=1
REINSTALL=
USEDIALOG=1
SKIPUTC=
VERBOSE=
TZ_OR_FAIL=
CHROOTENV=

#
# Dummy vars (populated dynamically)
#
COUNTRIES= # list of 2-character country codes created by f_read_iso3166_table

############################################################ FUNCTIONS

# dialog_menu_main
#
# Display the dialog(1)-based application main menu.
#
dialog_menu_main()
{
	local title="$DIALOG_TITLE"
	local btitle="$DIALOG_BACKTITLE"
	local prompt="$msg_select_region"
	local defaultitem= # Calculated below
	local hline=

	local height width rows
	eval f_dialog_menu_size height width rows \
	                        \"\$title\"  \
	                        \"\$btitle\" \
	                        \"\$prompt\" \
	                        \"\$hline\"  \
	                        $continent_menu_list

	# Obtain default-item from previously stored selection
	f_dialog_default_fetch defaultitem

	local menu_choice
	menu_choice=$( eval $DIALOG \
		--title \"\$title\"              \
		--backtitle \"\$btitle\"         \
		--hline \"\$hline\"              \
		--ok-label \"\$msg_ok\"          \
		--cancel-label \"\$msg_cancel\"  \
		--default-item \"\$defaultitem\" \
		--menu \"\$prompt\"              \
		$height $width $rows             \
		$continent_menu_list             \
		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
	)
	local retval=$?
	f_dialog_data_sanitize menu_choice
	f_dialog_menutag_store "$menu_choice"
	f_dialog_default_store "$menu_choice"
	return $retval
}

############################################################ MAIN

# Incorporate rc-file if it exists
[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"

#
# Process command-line arguments
#
while getopts C:ehnrsv$GETOPTS_STDARGS flag; do
	case "$flag" in
	C) CHROOTENV="$OPTARG" ;;
	e) TZ_OR_FAIL=1 ;;
	n) REALLYDOIT= ;;
	r) REINSTALL=1
	   USEDIALOG= ;;
	s) SKIPUTC=1 ;;
	v) VERBOSE=1 ;;
	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm" ;;
	esac
done
shift $(( $OPTIND - 1 ))

#
# Initialize
#
f_dialog_title "$msg_time_zone"
f_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
f_mustberoot_init

#
# Process `-C chroot_directory' command-line argument
#
if [ "$CHROOTENV" ]; then
	_PATH_ZONETAB="$CHROOTENV$_PATH_ZONETAB"
	_PATH_ISO3166="$CHROOTENV$_PATH_ISO3166"
	_PATH_ZONEINFO="$CHROOTENV$_PATH_ZONEINFO"
	_PATH_LOCALTIME="$CHROOTENV$_PATH_LOCALTIME"
	_PATH_DB="$CHROOTENV$_PATH_DB"
	_PATH_WALL_CMOS_CLOCK="$CHROOTENV$_PATH_WALL_CMOS_CLOCK"
fi

#
# Process `-r' command-line option
#
if [ "$REINSTALL" ]; then
	[ -f "$_PATH_DB" -a -r "$_PATH_DB" ] ||
		f_die 1 "$msg_cannot_open_for_reading" "$_PATH_DB"
	zoneinfo=$( cat "$_PATH_DB" ) ||
		f_die 1 "$msg_error_reading" "$_PATH_DB"
	[ "$zoneinfo" ] ||
		f_die 1 "$msg_unable_to_determine_name_from_db" "$_PATH_DB"
	f_install_zoneinfo "$zoneinfo"
	exit $?
fi

#
# If the arguments on the command-line do not specify a file,
# then interpret it as a zoneinfo name
#
if [ $# -ge 1 ]; then
	zoneinfo="$1"

	if [ ! -f "$zoneinfo" ]; then
		USEDIALOG=
		f_install_zoneinfo "$zoneinfo"
		exit $?
	fi

	# FALLTHROUGH
fi

#
# Process the UTC option
#
if [ "$_PATH_WALL_CMOS_CLOCK" -a ! "$SKIPUTC" ]; then
	f_dialog_title "$msg_select_local_or_utc"
	title="$DIALOG_TITLE"
	btitle="$DIALOG_BACKTITLE"
	f_dialog_title_restore
	msg="$msg_is_machine_clock_utc"

	if [ "$USE_XDIALOG" ]; then
		defaultno="default-no"
		height=10 width=77
	else
		defaultno="defaultno"
		height=7 width=73
	fi

	if [ "$USE_XDIALOG" ]; then
		$DIALOG \
			--title "$title"         \
			--backtitle "$btitle"    \
			--$defaultno             \
			--ok-label "$msg_yes"    \
			--cancel-label "$msg_no" \
			--yesno "$msg" $height $width
		result=$?
	else
		$DIALOG \
			--title "$title"       \
			--backtitle "$btitle"  \
			--$defaultno           \
			--yes-label "$msg_yes" \
			--no-label "$msg_no"   \
			--yesno "$msg" $height $width
		result=$?
	fi

	if [ $result -eq 0 ]; then
		# User chose YES
		[ "$REALLYDOIT" ] &&
			f_quietly rm -f "$_PATH_WALL_CMOS_CLOCK"
	else
		# User chose NO, pressed ESC (or Ctrl-C), or closed box
		[ "$REALLYDOIT" ] &&
			( umask 222 && :> "$_PATH_WALL_CMOS_CLOCK" )
	fi
fi

#
# Process optional default zone argument
#
if [ $# -ge 1 ]; then
	default="$1"

	f_dialog_title "$msg_default_zone_provided"
	msg=$( printf "\n$msg_use_default_zone" "$default" )
	hline=
	f_dialog_yesno "$msg" "$hline"
	result=$?
	f_dialog_title_restore

	if [ $result -eq 0 ]; then
		# User chose YES
		f_install_zoneinfo_file "$default"
		result=$?
		[ ! "$USE_XDIALOG" ] && f_dialog_clear
		exit $result
	fi

	[ ! "$USE_XDIALOG" ] && f_dialog_clear
fi

#
# Override the user-supplied umask
#
umask 022

#
# Read databases and perform initialization
#
f_read_iso3166_table # creates $COUNTRIES and $country_*_name
f_read_zones         # creates $country_*_{descr,cont,filename}
f_sort_countries     # sorts the countries listed for each continent
f_make_menus         # creates $continent_menu_list and $continent_*_menu_list

#
# Launch application main menu
#
defaultctry=""
defaultzone=""
NEED_CONTINENT=1
NEED_COUNTRY=1
while :; do
	if [ "$NEED_CONTINENT" ]; then
		dialog_menu_main # prompt the user to select a continent/ocean
		retval=$?
		f_dialog_menutag_fetch mtag

		if [ $retval -ne 0 ]; then
			[ "$TZ_OR_FAIL" ] && f_die
			exit $SUCCESS
		fi

		NEED_CONTINENT=

		continent=$( eval f_dialog_menutag2item \"\$mtag\" \
		                  	$continent_menu_list )
		cont=$( f_find_continent "$continent" )
		cont_title=$( f_continent $cont title )
		nitems=$( f_continent $cont nitems )
		isocean=$( f_OCEANP $cont )
	fi

	if [ "$NEED_COUNTRY" ]; then
		if [ "$cont_title" = "$continent_utc_title" ]; then
			if f_set_zone_utc; then
				break
			else
				NEED_CONTINENT=1
				continue
			fi
		fi

		#
		# Short cut -- if there's only one country, don't post a menu.
		#
		if [ $nitems -eq 1 ]; then
			tag=1
		else
			#
			# It's amazing how much good grammar really matters...
			#
			if [ ! "$isocean" ]; then
				title=$( printf "$msg_country_title" \
				                "$cont_title" )
				f_dialog_title "$title"
				title="$DIALOG_TITLE"
				btitle="$DIALOG_BACKTITLE"
				f_dialog_title_restore
				prompt="$msg_select_country"
			else
				title=$( printf "$msg_island_and_group_title" \
				                "$cont_title" )
				f_dialog_title "$title"
				title="$DIALOG_TITLE"
				btitle="$DIALOG_BACKTITLE"
				f_dialog_title_restore
				prompt="$msg_select_island_or_group"
			fi

			#
			# Calculate size of menu
			#
			menu_list=$( f_continent $cont menu_list )
			eval f_dialog_menu_size height width rows \
			                        \"\$title\"  \
			                        \"\$btitle\" \
			                        \"\$prompt\" \
			                        \"\"         \
			                        $menu_list

			#
			# Launch the country selection menu
			#
			tag=$( eval $DIALOG \
				--title \"\$title\"              \
				--backtitle \"\$btitle\"         \
				--ok-label \"\$msg_ok\"          \
				--cancel-label \"\$msg_cancel\"  \
				--default-item \"\$defaultctry\" \
				--menu \"\$prompt\"              \
				$height $width $rows             \
				$menu_list                       \
				2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
			)
			retval=$?
			f_dialog_data_sanitize tag
			defaultctry="$tag"

			if [ $retval -ne 0 ]; then
				NEED_CONTINENT=1
				continue # back to main menu
			fi
		fi

		# Get the country code from the user's selection 
		tlc=$( f_continent $cont tlc_$tag )

		NEED_COUNTRY=
	fi

	#
	# If the selection has only one zone (nzones == -1),
	# just set it.
	#
	nzones=$( f_country $tlc nzones )
	if [ $nzones -lt 0 ]; then
		real_cont=$( f_country $tlc cont )
		real_continent=$( f_continent $real_cont name )
		name=$( f_country $tlc name )
		filename=$( f_country $tlc filename )

		if ! f_confirm_zone "$real_continent/$filename"; then
			[ $nitems -eq 1 ] && NEED_CONTINENT=1
			NEED_COUNTRY=1
			continue
		fi
	else
		title=$( printf "$msg_country_time_zones" \
		                "$( f_country $tlc name )" )
		f_dialog_title "$title"
		title="$DIALOG_TITLE"
		btitle="$DIALOG_BACKTITLE"
		f_dialog_title_restore
		prompt="$msg_select_zone"
		menu_list=$( f_country $tlc menu_list )
		eval f_dialog_menu_size height width rows \
			\"\$title\"  \"\$btitle\" \"\$prompt\" \"\" $menu_list

		#
		# Launch the zone selection menu
		# NOTE: This is as deep as we go
		#
		n=$( eval $DIALOG \
			--title \"\$title\"              \
			--backtitle \"\$btitle\"         \
			--ok-label \"\$msg_ok\"          \
			--cancel-label \"\$msg_cancel\"  \
			--default-item \"\$defaultzone\" \
			--menu \"\$prompt\"              \
			$height $width $rows             \
			$menu_list                       \
			2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
		)
		retval=$?
		f_dialog_data_sanitize n
		defaultzone="$n"

		if [ $retval -ne 0 ]; then
			[ $nitems -eq 1 ] && NEED_CONTINENT=1
			NEED_COUNTRY=1
			continue
		fi

		real_cont=$( f_country $tlc cont_$n )
		real_continent=$( f_continent $real_cont name )
		name=$( f_country $tlc name )
		filename=$( f_country $tlc filename_$n )

		f_confirm_zone "$real_continent/$filename" || continue
	fi

	[ $retval -eq 0 ] || continue # back to main menu

	if ! f_install_zoneinfo "$real_continent/$filename"; then
		[ $nzones -lt 0 ] && NEED_COUNTRY=1
	else
		break
	fi
done

################################################################################
# END
################################################################################
@


1.18
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/252980
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d16 1
a16 1
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO, THE
d20 1
a20 1
# DAMAGES (INLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 252980 2013-07-07 18:21:30Z dteske $
@


1.17
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/252178
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d4 1
a4 1
# All Rights Reserved.
d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 252178 2013-06-24 20:58:54Z dteske $
@


1.17.2.1
log
@file timezone was added on branch RELENG_9 on 2013-07-07 20:03:18 +0000
@
text
@d1 455
@


1.17.2.2
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/252995
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@a0 455
#!/bin/sh
#-
# Copyright (c) 2011-2013 Devin Teske
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $FreeBSD: stable/9/usr.sbin/bsdconfig/timezone/timezone 252995 2013-07-07 19:13:34Z dteske $
#
############################################################ INCLUDES

BSDCFG_SHARE="/usr/share/bsdconfig"
. $BSDCFG_SHARE/common.subr || exit 1
f_dprintf "%s: loading includes..." "$0"
f_include $BSDCFG_SHARE/dialog.subr
f_include $BSDCFG_SHARE/mustberoot.subr
f_include $BSDCFG_SHARE/strings.subr
f_include $BSDCFG_SHARE/timezone/continents.subr
f_include $BSDCFG_SHARE/timezone/countries.subr
f_include $BSDCFG_SHARE/timezone/iso3166.subr
f_include $BSDCFG_SHARE/timezone/menus.subr
f_include $BSDCFG_SHARE/timezone/zones.subr

BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="090.timezone"
f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr

ipgm=$( f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" )
[ $? -eq $SUCCESS -a "$ipgm" ] && pgm="$ipgm"

############################################################ CONFIGURATION

#
# Standard pathnames
#
_PATH_DB="/var/db/zoneinfo"
_PATH_WALL_CMOS_CLOCK="/etc/wall_cmos_clock"

############################################################ GLOBALS

#
# Options
#
REALLYDOIT=1
REINSTALL=
USEDIALOG=1
SKIPUTC=
VERBOSE=
TZ_OR_FAIL=
CHROOTENV=

#
# Dummy vars (populated dynamically)
#
COUNTRIES= # list of 2-character country codes created by f_read_iso3166_table

############################################################ FUNCTIONS

# dialog_menu_main
#
# Display the dialog(1)-based application main menu.
#
dialog_menu_main()
{
	local title="$DIALOG_TITLE"
	local btitle="$DIALOG_BACKTITLE"
	local prompt="$msg_select_region"
	local defaultitem= # Calculated below
	local hline=

	local height width rows
	eval f_dialog_menu_size height width rows \
	                        \"\$title\"  \
	                        \"\$btitle\" \
	                        \"\$prompt\" \
	                        \"\$hline\"  \
	                        $continent_menu_list

	# Obtain default-item from previously stored selection
	f_dialog_default_fetch defaultitem

	local menu_choice
	menu_choice=$( eval $DIALOG \
		--title \"\$title\"              \
		--backtitle \"\$btitle\"         \
		--hline \"\$hline\"              \
		--ok-label \"\$msg_ok\"          \
		--cancel-label \"\$msg_cancel\"  \
		--default-item \"\$defaultitem\" \
		--menu \"\$prompt\"              \
		$height $width $rows             \
		$continent_menu_list             \
		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
	)
	local retval=$?
	f_dialog_data_sanitize menu_choice
	f_dialog_menutag_store "$menu_choice"
	f_dialog_default_store "$menu_choice"
	return $retval
}

############################################################ MAIN

# Incorporate rc-file if it exists
[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"

#
# Process command-line arguments
#
while getopts C:ehnrsv$GETOPTS_STDARGS flag; do
	case "$flag" in
	C) CHROOTENV="$OPTARG" ;;
	e) TZ_OR_FAIL=1 ;;
	n) REALLYDOIT= ;;
	r) REINSTALL=1
	   USEDIALOG= ;;
	s) SKIPUTC=1 ;;
	v) VERBOSE=1 ;;
	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm" ;;
	esac
done
shift $(( $OPTIND - 1 ))

#
# Initialize
#
f_dialog_title "$msg_time_zone"
f_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
f_mustberoot_init

#
# Process `-C chroot_directory' command-line argument
#
if [ "$CHROOTENV" ]; then
	_PATH_ZONETAB="$CHROOTENV$_PATH_ZONETAB"
	_PATH_ISO3166="$CHROOTENV$_PATH_ISO3166"
	_PATH_ZONEINFO="$CHROOTENV$_PATH_ZONEINFO"
	_PATH_LOCALTIME="$CHROOTENV$_PATH_LOCALTIME"
	_PATH_DB="$CHROOTENV$_PATH_DB"
	_PATH_WALL_CMOS_CLOCK="$CHROOTENV$_PATH_WALL_CMOS_CLOCK"
fi

#
# Process `-r' command-line option
#
if [ "$REINSTALL" ]; then
	[ -f "$_PATH_DB" -a -r "$_PATH_DB" ] ||
		f_die 1 "$msg_cannot_open_for_reading" "$_PATH_DB"
	zoneinfo=$( cat "$_PATH_DB" ) ||
		f_die 1 "$msg_error_reading" "$_PATH_DB"
	[ "$zoneinfo" ] ||
		f_die 1 "$msg_unable_to_determine_name_from_db" "$_PATH_DB"
	f_install_zoneinfo "$zoneinfo"
	exit $?
fi

#
# If the arguments on the command-line do not specify a file,
# then interpret it as a zoneinfo name
#
if [ $# -ge 1 ]; then
	zoneinfo="$1"

	if [ ! -f "$zoneinfo" ]; then
		USEDIALOG=
		f_install_zoneinfo "$zoneinfo"
		exit $?
	fi

	# FALLTHROUGH
fi

#
# Process the UTC option
#
if [ "$_PATH_WALL_CMOS_CLOCK" -a ! "$SKIPUTC" ]; then
	f_dialog_title "$msg_select_local_or_utc"
	title="$DIALOG_TITLE"
	btitle="$DIALOG_BACKTITLE"
	f_dialog_title_restore
	msg="$msg_is_machine_clock_utc"

	if [ "$USE_XDIALOG" ]; then
		defaultno="default-no"
		height=10 width=77
	else
		defaultno="defaultno"
		height=7 width=73
	fi

	if [ "$USE_XDIALOG" ]; then
		$DIALOG \
			--title "$title"         \
			--backtitle "$btitle"    \
			--$defaultno             \
			--ok-label "$msg_yes"    \
			--cancel-label "$msg_no" \
			--yesno "$msg" $height $width
		result=$?
	else
		$DIALOG \
			--title "$title"       \
			--backtitle "$btitle"  \
			--$defaultno           \
			--yes-label "$msg_yes" \
			--no-label "$msg_no"   \
			--yesno "$msg" $height $width
		result=$?
	fi

	if [ $result -eq 0 ]; then
		# User chose YES
		[ "$REALLYDOIT" ] &&
			f_quietly rm -f "$_PATH_WALL_CMOS_CLOCK"
	else
		# User chose NO, pressed ESC (or Ctrl-C), or closed box
		[ "$REALLYDOIT" ] &&
			( umask 222 && :> "$_PATH_WALL_CMOS_CLOCK" )
	fi
fi

#
# Process optional default zone argument
#
if [ $# -ge 1 ]; then
	default="$1"

	f_dialog_title "$msg_default_zone_provided"
	msg=$( printf "\n$msg_use_default_zone" "$default" )
	hline=
	f_dialog_yesno "$msg" "$hline"
	result=$?
	f_dialog_title_restore

	if [ $result -eq 0 ]; then
		# User chose YES
		f_install_zoneinfo_file "$default"
		result=$?
		[ ! "$USE_XDIALOG" ] && f_dialog_clear
		exit $result
	fi

	[ ! "$USE_XDIALOG" ] && f_dialog_clear
fi

#
# Override the user-supplied umask
#
umask 022

#
# Read databases and perform initialization
#
f_read_iso3166_table # creates $COUNTRIES and $country_*_name
f_read_zones         # creates $country_*_{descr,cont,filename}
f_sort_countries     # sorts the countries listed for each continent
f_make_menus         # creates $continent_menu_list and $continent_*_menu_list

#
# Launch application main menu
#
defaultctry=""
defaultzone=""
NEED_CONTINENT=1
NEED_COUNTRY=1
while :; do
	if [ "$NEED_CONTINENT" ]; then
		dialog_menu_main # prompt the user to select a continent/ocean
		retval=$?
		f_dialog_menutag_fetch mtag

		if [ $retval -ne 0 ]; then
			[ "$TZ_OR_FAIL" ] && f_die
			exit $SUCCESS
		fi

		NEED_CONTINENT=

		continent=$( eval f_dialog_menutag2item \"\$mtag\" \
		                  	$continent_menu_list )
		cont=$( f_find_continent "$continent" )
		cont_title=$( f_continent $cont title )
		nitems=$( f_continent $cont nitems )
		isocean=$( f_OCEANP $cont )
	fi

	if [ "$NEED_COUNTRY" ]; then
		if [ "$cont_title" = "$continent_utc_title" ]; then
			if f_set_zone_utc; then
				break
			else
				NEED_CONTINENT=1
				continue
			fi
		fi

		#
		# Short cut -- if there's only one country, don't post a menu.
		#
		if [ $nitems -eq 1 ]; then
			tag=1
		else
			#
			# It's amazing how much good grammar really matters...
			#
			if [ ! "$isocean" ]; then
				title=$( printf "$msg_country_title" \
				                "$cont_title" )
				f_dialog_title "$title"
				title="$DIALOG_TITLE"
				btitle="$DIALOG_BACKTITLE"
				f_dialog_title_restore
				prompt="$msg_select_country"
			else
				title=$( printf "$msg_island_and_group_title" \
				                "$cont_title" )
				f_dialog_title "$title"
				title="$DIALOG_TITLE"
				btitle="$DIALOG_BACKTITLE"
				f_dialog_title_restore
				prompt="$msg_select_island_or_group"
			fi

			#
			# Calculate size of menu
			#
			menu_list=$( f_continent $cont menu_list )
			eval f_dialog_menu_size height width rows \
			                        \"\$title\"  \
			                        \"\$btitle\" \
			                        \"\$prompt\" \
			                        \"\"         \
			                        $menu_list

			#
			# Launch the country selection menu
			#
			tag=$( eval $DIALOG \
				--title \"\$title\"              \
				--backtitle \"\$btitle\"         \
				--ok-label \"\$msg_ok\"          \
				--cancel-label \"\$msg_cancel\"  \
				--default-item \"\$defaultctry\" \
				--menu \"\$prompt\"              \
				$height $width $rows             \
				$menu_list                       \
				2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
			)
			retval=$?
			f_dialog_data_sanitize tag
			defaultctry="$tag"

			if [ $retval -ne 0 ]; then
				NEED_CONTINENT=1
				continue # back to main menu
			fi
		fi

		# Get the country code from the user's selection 
		tlc=$( f_continent $cont tlc_$tag )

		NEED_COUNTRY=
	fi

	#
	# If the selection has only one zone (nzones == -1),
	# just set it.
	#
	nzones=$( f_country $tlc nzones )
	if [ $nzones -lt 0 ]; then
		real_cont=$( f_country $tlc cont )
		real_continent=$( f_continent $real_cont name )
		name=$( f_country $tlc name )
		filename=$( f_country $tlc filename )

		if ! f_confirm_zone "$real_continent/$filename"; then
			[ $nitems -eq 1 ] && NEED_CONTINENT=1
			NEED_COUNTRY=1
			continue
		fi
	else
		title=$( printf "$msg_country_time_zones" \
		                "$( f_country $tlc name )" )
		f_dialog_title "$title"
		title="$DIALOG_TITLE"
		btitle="$DIALOG_BACKTITLE"
		f_dialog_title_restore
		prompt="$msg_select_zone"
		menu_list=$( f_country $tlc menu_list )
		eval f_dialog_menu_size height width rows \
			\"\$title\"  \"\$btitle\" \"\$prompt\" \"\" $menu_list

		#
		# Launch the zone selection menu
		# NOTE: This is as deep as we go
		#
		n=$( eval $DIALOG \
			--title \"\$title\"              \
			--backtitle \"\$btitle\"         \
			--ok-label \"\$msg_ok\"          \
			--cancel-label \"\$msg_cancel\"  \
			--default-item \"\$defaultzone\" \
			--menu \"\$prompt\"              \
			$height $width $rows             \
			$menu_list                       \
			2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
		)
		retval=$?
		f_dialog_data_sanitize n
		defaultzone="$n"

		if [ $retval -ne 0 ]; then
			[ $nitems -eq 1 ] && NEED_CONTINENT=1
			NEED_COUNTRY=1
			continue
		fi

		real_cont=$( f_country $tlc cont_$n )
		real_continent=$( f_continent $real_cont name )
		name=$( f_country $tlc name )
		filename=$( f_country $tlc filename_$n )

		f_confirm_zone "$real_continent/$filename" || continue
	fi

	[ $retval -eq 0 ] || continue # back to main menu

	if ! f_install_zoneinfo "$real_continent/$filename"; then
		[ $nzones -lt 0 ] && NEED_COUNTRY=1
	else
		break
	fi
done

################################################################################
# END
################################################################################
@


1.17.2.3
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/263791
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: stable/9/usr.sbin/bsdconfig/timezone/timezone 263791 2014-03-27 03:20:47Z dteske $
d46 2
a47 2
f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" ipgm &&
	pgm="${ipgm:-$pgm}"
d167 1
a167 1
	f_eval_catch -dk zoneinfo "$0" cat 'cat "%s"' "$_PATH_DB" ||
d229 1
a229 1
	if [ $result -eq $DIALOG_OK ]; then
d247 1
a247 1
	f_sprintf msg "\n$msg_use_default_zone" "$default"
d253 1
a253 1
	if [ $result -eq $DIALOG_OK ]; then
d290 1
a290 1
		if [ $retval -ne $DIALOG_OK ]; then
d325 2
a326 2
				f_sprintf title "$msg_country_title" \
				                "$cont_title"
d333 2
a334 2
				f_sprintf title "$msg_island_and_group_title" \
				                "$cont_title"
d371 1
a371 1
			if [ $retval -ne $DIALOG_OK ]; then
d400 2
a401 2
		f_sprintf title "$msg_country_time_zones" \
		                "$( f_country $tlc name )"
d403 2
a404 1
		title="$DIALOG_TITLE" btitle="$DIALOG_BACKTITLE"
d430 1
a430 1
		if [ $retval -ne $DIALOG_OK ]; then
d444 1
a444 1
	[ $retval -eq $DIALOG_OK ] || continue # back to main menu
@


1.16
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/251979
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 251979 2013-06-19 00:09:21Z dteske $
d130 3
a132 3
	C) CHROOTENV="$OPTARG";;
	e) TZ_OR_FAIL=1;;
	n) REALLYDOIT=;;
d134 4
a137 4
	   USEDIALOG=;;
	s) SKIPUTC=1;;
	v) VERBOSE=1;;
	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm";;
@


1.15
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/251264
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 251264 2013-06-02 20:02:50Z dteske $
d247 4
a250 2
	title="$DIALOG_TITLE"
	btitle="$DIALOG_BACKTITLE"
a251 20
	msg=$( printf "\n$msg_use_default_zone" "$default" )
	f_dialog_buttonbox_size height width "$title" "$btitle" "$msg"

	if [ "$USE_XDIALOG" ]; then
		eval $DIALOG \
			--title \"\$title\"         \
			--backtitle \"\$btitle\"    \
			--ok-label \"\$msg_yes\"    \
			--cancel-label \"\$msg_no\" \
			--yesno \"\$msg\" $height $width
		result=$?
	else
		eval $DIALOG \
			--title \"\$title\"       \
			--backtitle \"\$btitle\"  \
			--yes-label \"\$msg_yes\" \
			--no-label \"\$msg_no\"   \
			--yesno \"\$msg\" $height $width
		result=$?
	fi
@


1.14
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/251244
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 251244 2013-06-02 09:02:12Z dteske $
d87 1
d94 1
a94 1
	                        \"\"         \
d104 1
@


1.13
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/251236
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 251236 2013-06-01 23:58:44Z dteske $
d86 1
d96 3
d101 8
a108 8
		--title \"\$title\"                 \
		--backtitle \"\$btitle\"            \
		--ok-label \"\$msg_ok\"             \
		--cancel-label \"\$msg_cancel\"     \
		--default-item \"\$DEFAULTITEM_$$\" \
		--menu \"\$prompt\"                 \
		$height $width $rows                \
		$continent_menu_list                \
d114 1
a114 1
	setvar DEFAULTITEM_$$ "$menu_choice"
@


1.12
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/251233
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 251233 2013-06-01 22:12:53Z dteske $
d95 2
a96 2
	local dialog_menu
	dialog_menu=$( eval $DIALOG \
d108 3
a110 2
	setvar DEFAULTITEM_$$ "$dialog_menu"
	setvar DIALOG_MENU_$$ "$dialog_menu"
d300 1
a300 1
		mtag=$( f_dialog_menutag )
d368 1
a368 1
			dialog_menu=$( eval $DIALOG \
d380 1
a380 2
			setvar DIALOG_MENU_$$ "$dialog_menu"
			tag=$( f_dialog_menutag )
d427 1
a427 1
		dialog_menu=$( eval $DIALOG \
d439 1
a439 2
		setvar DIALOG_MENU_$$ "$dialog_menu"
		n=$( f_dialog_menutag )
@


1.11
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/251190
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 251190 2013-05-31 19:07:17Z dteske $
d92 1
a92 1
	                        \"\$\"       \
@


1.10
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/250633
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 250633 2013-05-14 03:21:13Z dteske $
a85 1
	local size
d87 7
a93 6
	size=$( eval f_dialog_menu_size \
	        	\"\$title\"  \
	        	\"\$btitle\" \
	        	\"\$prompt\" \
			\"\"         \
	        	$continent_menu_list )
d102 2
a103 1
		--menu \"\$prompt\" $size           \
d244 1
a244 1
	size=$( f_dialog_buttonbox_size "$title" "$btitle" "$msg" )
d252 1
a252 1
			--yesno \"\$msg\" $size
d260 1
a260 1
			--yesno \"\$msg\" $size
d357 6
a362 6
			size=$( eval f_dialog_menu_size \
			        	\"\$title\"  \
			        	\"\$btitle\" \
			        	\"\$prompt\" \
			        	\"\"         \
			        	$menu_list   )
d373 2
a374 1
				--menu \"\$prompt\" $size        \
d420 2
a421 2
		size=$( eval f_dialog_menu_size \"\$title\"  \"\$btitle\" \
		        	\"\$prompt\" \"\" $menu_list )
d433 2
a434 1
			--menu \"\$prompt\" $size        \
@


1.9
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/249751
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 249751 2013-04-22 05:52:06Z dteske $
d120 1
a120 1
while getopts C:dD:ehnrsSvX flag; do
@


1.8
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/249746
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 249746 2013-04-22 05:02:34Z dteske $
d97 7
a103 6
		--title \"\$title\"             \
		--backtitle \"\$btitle\"        \
		--ok-label \"\$msg_ok\"         \
		--cancel-label \"\$msg_cancel\" \
		--menu \"\$prompt\" $size       \
		$continent_menu_list            \
d107 1
d290 2
d367 7
a373 6
				--title \"\$title\"             \
				--backtitle \"\$btitle\"        \
				--ok-label \"\$msg_ok\"         \
				--cancel-label \"\$msg_cancel\" \
				--menu \"\$prompt\" $size       \
				$menu_list                      \
d379 1
d426 7
a432 6
			--title \"\$title\"             \
			--backtitle \"\$btitle\"        \
			--ok-label \"\$msg_ok\"         \
			--cancel-label \"\$msg_cancel\" \
			--menu \"\$prompt\" $size       \
			$menu_list                      \
d438 1
@


1.7
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/244675
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d3 1
a3 1
# Copyright (c) 2011-2012 Devin Teske
d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 244675 2012-12-25 10:47:45Z dteske $
d118 1
a118 1
while getopts C:ehnrsSvX flag; do
@


1.6
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/244674
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 244674 2012-12-25 09:30:25Z dteske $
d33 1
@


1.5
log
@## SVN ##
## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/243112
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ## r243112 | dteske | 2012-11-16 00:59:11 +0000 (Fri, 16 Nov 2012) | 11 lines
## SVN ##
## SVN ## Replicate a feature from sysinstall documented in
## SVN ## stable/9/usr.sbin/sysinstall/help/shortcuts.hlp (reproduced below):
## SVN ##
## SVN ## If /usr/sbin/sysinstall is linked to another filename, say
## SVN ## `/usr/local/bin/configPackages', then the basename will be used
## SVN ## as an implicit command name.
## SVN ##
## SVN ## To get a list of modules you can link to, see `bsdconfig -h' output.
## SVN ##
## SVN ## Approved by:	adrian (co-mentor) (implicit)
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ##
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 243112 2012-11-16 00:59:11Z dteske $
a133 1
f_dialog_init
@


1.4
log
@Switching exporter and resync
@
text
@d27 1
a27 1
# $FreeBSD: head/usr.sbin/bsdconfig/timezone/timezone 240768 2012-09-20 23:44:13Z dteske $
d45 1
a45 1
ipgm=$( f_index_menu_selection $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" )
@


1.3
log
@SVN rev 240768 on 2012-09-20 23:44:13Z by dteske

Change all invocations of dialog(1) to no-longer require temporary files.
This allows bsdconfig to -- like bsdinstall -- operate from read-only media.

Reviewed by:	adrian (co-mentor)
Approved by:	adrian (co-mentor)
@
text
@d27 1
a27 1
# $FreeBSD$
@


1.2
log
@SVN rev 240684 on 2012-09-18 22:28:42Z by dteske

Move major includes into /usr/share/bsdconfig for easy external access.

Reviewed by:	adrian (co-mentor)
Approved by:	adrian (co-mentor)
@
text
@d94 2
a95 1
	eval $DIALOG \
d102 5
a106 1
		2> "$DIALOG_TMPDIR/dialog.menu.$$"
d362 1
a362 1
			eval $DIALOG \
d369 2
a370 1
				2> "$DIALOG_TMPDIR/dialog.menu.$$"
d372 1
d419 1
a419 1
		eval $DIALOG \
d426 2
a427 1
			2> "$DIALOG_TMPDIR/dialog.menu.$$"
d429 1
@


1.1
log
@SVN rev 238438 on 2012-07-14 03:16:57Z by dteske

Import bsdconfig(8) as a replacement for the post-install abilities of
deprecated sysinstall(8). NOTE: WITH_BSDCONFIG is currently required.

Submitted by:	Devin Teske (dteske), Ron McDowell <rcm@@fuzzwad.org>
Reviewed by:	Ron McDowell <rcm@@fuzzwad.org>
Approved by:	Ed Maste (emaste)
@
text
@d31 12
a42 12
BSDCFG_LIBE="/usr/libexec/bsdconfig"
. $BSDCFG_LIBE/include/common.subr || exit 1
f_include $BSDCFG_LIBE/include/dialog.subr
f_include $BSDCFG_LIBE/include/mustberoot.subr
f_include $BSDCFG_LIBE/include/strings.subr

APP_DIR="090.timezone"
f_include $BSDCFG_LIBE/$APP_DIR/include/continents.subr
f_include $BSDCFG_LIBE/$APP_DIR/include/countries.subr
f_include $BSDCFG_LIBE/$APP_DIR/include/iso3166.subr
f_include $BSDCFG_LIBE/$APP_DIR/include/menus.subr
f_include $BSDCFG_LIBE/$APP_DIR/include/zones.subr
@

