AlkantarClanX12

Your IP : 216.73.217.128


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : //var/lib/dpkg/info/libapache2-mod-python.prerm

#!/bin/sh
set -e
# Automatically added by dh_apache2
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then
	if true; then
		if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
			. /usr/share/apache2/apache2-maintscript-helper

			for conf in python  ; do
				apache2_invoke dismod $conf  || exit $?
			done
		fi
	fi
fi
# End automatically added section

# Automatically added by dh_python2:
if which pyclean >/dev/null 2>&1; then
	pyclean -p libapache2-mod-python 
else
	dpkg -L libapache2-mod-python | grep \.py$ | while read file
	do
		rm -f "${file}"[co] >/dev/null
  	done
fi

# End automatically added section