case "$MODE" in
    finalization)
        # Set default timezone to that of server Bug #126443
        if [ -f /etc/timezone ]; then
            cp /etc/timezone $ROOT/etc/timezone
            read TIMEZONE < /etc/timezone
            if [ -n "$TIMEZONE" ] && [ -e $ROOT/usr/share/zoneinfo/"$TIMEZONE" ]; then
                ln -sf /usr/share/zoneinfo/"$TIMEZONE" $ROOT/etc/localtime
            fi
        fi
        ;;
esac
