#!/bin/sh -e
# Use tzsetup because it's just like tzconfig but has a debconf UI
# (Also, it can ask about whether the hardware clock is GMT..)
if [ "$1" = new ]; then
	tzsetup -y -g -U
else
	tzsetup -y -g
fi
