1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-18 08:02:48 +00:00
freebsd-ports/dns/adsuck/pkg-deinstall

16 lines
321 B
Plaintext
Raw Normal View History

#!/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