File: /var/lib/dpkg/info/php7.2-cgi.prerm
#!/bin/sh
set -e
if [ "$1" = "remove" -o "$1" = "deconfigure" ]; then
update-alternatives --remove php-cgi /usr/bin/php-cgi7.2
update-alternatives --remove php-cgi-bin /usr/lib/cgi-bin/php7.2
fi
php_enable() { return 0; }
# Automatically added by dh_apache2/UNDECLARED
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then
if php_enable; then
if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
. /usr/share/apache2/apache2-maintscript-helper
for conf in php7.2-cgi ; do
apache2_invoke disconf $conf || exit 1
done
fi
fi
fi
# End automatically added section
exit 0