#!/bin/sh
#
# Set timezone - contributed by Itay Ben-Yaacov
#

timezone=$1

if [ -f /usr/share/zoneinfo/$timezone ]; then 
  echo $timezone > /etc/timezone
  rm -f /etc/localtime && ln -sf /usr/share/zoneinfo/$timezone /etc/localtime
fi
