aboutsummaryrefslogtreecommitdiffstats
path: root/debian/sitesummary-client.postrm
blob: 5961b73ac53ab8e755d73ae823b672395cfad201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

if [ "$1" = "purge" ] ; then
	(
		cd /etc/sitesummary
		rm -f config.d/00debconf
		rm -f hostclass site sitecontact sitegroup
		rmdir config.d 2>/dev/null || true
	)
fi

#DEBHELPER#