summaryrefslogtreecommitdiff
path: root/debian/postrm
blob: 73d0629eee001b2e96ca2fcf247d8461c77905de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

case "$1" in
purge)
	rm -rf /var/log/plinth /var/lib/plinth
	;;
esac

#DEBHELPER#

exit 0