Package php7-apcu: Scripts

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/7.2/service 
    export php_sysconfdir=/etc/php/7.2 
    export php_extconf=/usr/share/php/7.2/extconf 
    export extList=apcu 
    /usr/share/php/scripts/php_postin.sh 
fi
Pre uninstall

1
2
3
4
5
6
7
8
9
if [ $1 = 0 ]; then 
    if [ -x /usr/share/php/scripts/php_preun.sh ]; then 
	export php_servicedir=/usr/share/php/7.2/service 
        export php_sysconfdir=/etc/php/7.2 
	export php_extconf=/usr/share/php/7.2/extconf 
	export extList=apcu 
	/usr/share/php/scripts/php_preun.sh 
    fi 
fi