freebsd-ports/dns/adsuck/pkg-deinstall

16 lines
321 B
Text
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