AlkantarClanX12
| Current Path : /var/lib/dpkg/info/ |
| Current File : /var/lib/dpkg/info/php-apcu.postinst |
#!/bin/sh
set -e
# Automatically added by dh_php
for conf in apcu; do
dpkg-maintscript-helper rm_conffile /etc/php/mods-available/${conf}.ini -- "$@"
done
if [ -e /usr/lib/php/php-maintscript-helper ] ; then
. /usr/lib/php/php-maintscript-helper
for version in 7.0 ; do
for conf in apcu ; do
php_invoke enmod $version ALL $conf || exit $?
done
done
else
for conf in apcu ; do
phpenmod $conf
done
fi
# End automatically added section