post_install() {
    if [ -f /etc/systemconfig ]
    then
        . /etc/systemconfig
        if [ -f /etc/php/conf.d/linhes.ini ]
        then
            sed -i 's|^.*date.timezone.*=.*$|date.timezone='${timezone}'|' /etc/php/conf.d/linhes.ini
        fi
    fi
}

post_upgrade() {
	post_install
}