echo "America/Vancouver" > /etc/localtime
I'm not sue when/why this conversion was done, but I don't think it should effect your results.
From /var/lib/dpkg/info/tzdata.config
Code: Select all
# If /etc/localtime is a link, update /etc/timezone
if [ -L /etc/localtime ] ; then
TIMEZONE="$(readlink /etc/localtime)"
TIMEZONE="${TIMEZONE#/usr/share/zoneinfo/}"
if [ -f "/usr/share/zoneinfo/$TIMEZONE" ] ; then
echo ${TIMEZONE} > /etc/timezone
fi
fi