Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 18.221.217.100
Current Path : /var/lib/dpkg/info/ |
| Current File : //var/lib/dpkg/info/libapache2-mod-php5.6.prerm |
#!/bin/sh
set -e
php_enable() { return 0; }
if [ "$1" = "remove" ]; then
if [ -e /usr/lib/php/php-maintscript-helper ]; then
. /usr/lib/php/php-maintscript-helper
mods=$(phpquery -M -v 5.6)
for mod in $mods; do
php_invoke dismod 5.6 apache2 $mod
done
else
for mod in /etc/php/5.6/apache2/conf.d/*.ini; do
rm -f $mod
for ext in '~' '%' .bak .ucf-new .ucf-old .ucf-dist; do
rm -f $mod$ext
done
done
fi
fi
# 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 php5.6 ; do
apache2_invoke dismod $conf || exit 1
done
fi
fi
fi
# End automatically added section
exit 0
|