Sophie

Sophie

distrib > * > 2008.0 > x86_64 > by-pkgid > e36af96384aa620459b712166f2a49d9 > files > 9

timezone-2009a-1mdv2008.0.src.rpm

#!/bin/sh

zonedir=@datadir@/zoneinfo
localtime_file=@sysconfdir@/localtime
clock_file=@sysconfdir@/sysconfig/clock

unset ZONE
if [ -f $clock_file ]; then
	. $clock_file
fi

if [ -z "$ZONE" ]; then
	ZONE=US/Eastern
fi

if [ -f $zonedir/$ZONE ]; then
	install -m 0644 $zonedir/$ZONE $localtime_file
fi