summaryrefslogtreecommitdiffstats
path: root/debian/libapache2-mod-dnssd.prerm
blob: 99b45e62704b6d3d3b95670e2fe1096a1c0b14c8 (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