RedHat: don't package manpages for binaries not included
[openafs.git] / src / packaging / Debian / openafs-client.postrm
1 #! /bin/sh
2
3 set -e
4
5 case "$1" in
6 purge)
7     rmdir /afs 2>/dev/null || true
8     for file in cacheinfo CellServDB ThisCell afs.conf.client ; do
9         rm -f "/etc/openafs/$file"
10     done
11     ;;
12
13 remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
14     ;;
15
16 *)
17     echo "postrm called with unknown argument $1" >&2
18     exit 0
19 esac
20
21 #DEBHELPER#