summaryrefslogtreecommitdiffstats
path: root/debian/libapache2-mod-dnssd.prerm
blob: 4b606d8e1f3d74093a63eac2631a56c74ebcd6a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -e

#DEBHELPER#

if [ "$1" != "remove" -a "$1" != "purge" ]; then
	exit 0
fi

if [ -e /etc/apache2/apache2.conf ]; then
	/usr/sbin/a2dismod mod-dnssd || true
fi

exit 0