summaryrefslogtreecommitdiffstats
path: root/debian/tcpdump.postrm
blob: ce8ded9801e05ffa0dddb5140e11a87a4a95d942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

case "$1" in
    purge)
	userdel tcpdump >/dev/null 2>&1 || true
	groupdel tcpdump >/dev/null 2>&1 || true
	;;
esac

#DEBHELPER#