Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/misc/global-tz/pkg-install
16438 views
#!/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