Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.144.105.101
#!/bin/sh
set -e
if [ "$1" = "remove" -o "$1" = "deconfigure" ]; then
update-alternatives --remove php-cgi /usr/bin/php-cgi5.6
update-alternatives --remove php-cgi-bin /usr/lib/cgi-bin/php5.6
fi
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 cgi $mod
done
else
for mod in /etc/php/5.6/cgi/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-cgi ; do
apache2_invoke disconf $conf || exit 1
done
fi
fi
fi
# End automatically added section
exit 0
|