#!/bin/sh

# set the timezone to UTC
if [ -f /etc/sysconfig/clock ] ; then
    sed -i -e "s@^TIMEZONE=.*@TIMEZONE=\"UTC\"@" /etc/sysconfig/clock
fi
test -e /usr/sbin/zic || exit 0
zic -l UTC || true

