aboutsummaryrefslogtreecommitdiffstats
path: root/misc/global-tz/pkg-install
blob: 129bbea8b0fa264ba3b81956e7c1420da9563bd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

if [ "$2" != "PRE-INSTALL" ]; then
	exit 0
fi

if [ -f /var/db/zoneinfo -a -O /var/db/zoneinfo -a -G /var/db/zoneinfo ]; then
	if [ -f /usr/share/zoneinfo/$(cat /var/db/zoneinfo) ]; then
		tzsetup -r
		echo "/etc/localtime is updated."
	fi
else
	echo "Now run tzsetup(8) again to install the right file to /etc/localtime."
fi