summaryrefslogtreecommitdiffstats
path: root/debian/debhelper/postrm-apache2
blob: 89ee4605e527cb47d3660e4dd7343fd49867693d (plain)
1
2
3
4
5
6
7
8
9
10
11
if [ "$1" = "purge" ] ; then
	if #CONDITIONAL_VARIABLE#; then
		if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
			. /usr/share/apache2/apache2-maintscript-helper

			for conf in #NAMES# ; do
				apache2_invoke #HELPER# $conf #ACTION# || #ERROR_HANDLER#
			done
		fi
	fi
fi