File: //proc/self/root/var/lib/dpkg/info/php-ioncube-loader.prerm
#!/bin/sh
set -e
# Automatically added by dh_php
# Hey emacs, this is -*- shell-script -*-
# Disable and then re-enable module on upgrades to deal with priority changes
if [ "$1" = "upgrade" ]; then
if [ -e /usr/lib/php/php-maintscript-helper ] ; then
. /usr/lib/php/php-maintscript-helper
for version in 8.4 8.3 8.2 8.1 7.4 7.3 7.2 7.1 7.0 5.6 5.5 5.4 5.3 5.2 ; do
for name in ioncube-loader ; do
php_invoke dismod "$version" ALL "$name" || exit $?
done
done
fi
fi
# End automatically added section