AlkantarClanX12

Your IP : 216.73.217.128


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/php7.0-fpm.prerm

#!/bin/sh

set -e


php_enable() { return 0; }

# Automatically added by dh_installinit
if [ -x "/etc/init.d/php7.0-fpm" ] && [ "$1" = remove ]; then
	invoke-rc.d php7.0-fpm stop || exit $?
fi
# End automatically added section
# Automatically added by dh_apache2
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.0-fpm  ; do
				apache2_invoke disconf $conf  || exit $?
			done
		fi
	fi
fi
# End automatically added section


exit 0