Package apache-mod_php5: Скрипты

Post install

1
2
3
4
5
6
7
if [ -x /usr/share/php/scripts/php_postin.sh ]; then 
    export php_servicedir=/usr/share/php/5.3/service 
    export php_sysconfdir=/etc/php/5.3 
    export php_extconf=/usr/share/php/5.3/extconf 
    export sapiList=apache-mod_php 
    /usr/share/php/scripts/php_postin.sh 
fi
Post uninstall

1
2
3
if [ $1 = 0 ]; then
	/sbin/service httpd condreload
fi
Pre uninstall

if [ $1 = 0 ]; then 
    if [ -x /usr/share/php/scripts/php_preun.sh ]; then 
        export php_servicedir=/usr/share/php/5.3/service 
	export php_sysconfdir=/etc/php/5.3 
	export php_extconf=/usr/share/php/5.3/extconf 
	export sapiList=apache-mod_php 
	/usr/share/php/scripts/php_preun.sh 
    fi 
    find /etc/php/5.3/apache-mod_php -type f -name '*.phpnew' -or -name '*.rpmnew' -delete 
fi