summaryrefslogtreecommitdiffstats
path: root/debian/postrm
blob: 483dade232bde16c82938ac31c42cf93a8fdd572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
set -e

oldcatdir="/var/catman"
catdir="/var/cache/man"

case $1 in
    purge)
	# removing all catpage hierarchies
	if [ -d $oldcatdir ]; then
	    echo "  Removing catpages as well as $oldcatdir hierarchy."
	    rm -rf $oldcatdir 2>/dev/null || true
	fi
	if [ -d $catdir ]; then
	    echo "  Removing catpages as well as $catdir hierarchy."
	    rm -rf $catdir 2>/dev/null || true
	fi
	rm -f /var/lib/man-db/auto-update
	;;
esac

#DEBHELPER#

exit 0