freebsd-ports/dns/adsuck/pkg-deinstall
Baptiste Daroussin 5c9c7a01ff adsuck is a DNS relay that returns NXdomain for hosts that match names in a
blacklist for quick and non browser plugin based ad blocking.

WWW: http://opensource.conformal.com/wiki/Adsuck

PR:		ports/156644
Submitted by:	Philippe Pepiot <phil@philpep.org>
2011-05-07 15:13:53 +00:00

15 lines
321 B
Bash

#!/bin/sh
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
if pw groupshow _adsuck 2>/dev/null 1>&2; then
echo "To delete the '_adsuck' group permanently, use 'pw groupdel _adsuck'"
fi
if pw usershow _adsuck 2>/dev/null 1>&2; then
echo "To delete the '_adsuck' user permanently, use 'pw userdel _adsuck'"
fi
exit 0