dns/adsuck: Remove useless pkg-deinstall script

A message to delete the _adsuck user/group after deinstallation is
already printed by USERS/GROUPS.  No need to print it twice.
This commit is contained in:
Tobias Kortkamp 2019-12-20 06:45:27 +00:00
parent 88bdd24fa4
commit 7326c7b96a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=520477
2 changed files with 1 additions and 16 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= adsuck
PORTVERSION= 2.3
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= dns
MASTER_SITES= http://opensource.conformal.com/snapshots/adsuck/ \
http://philpep.org/pub/

View File

@ -1,15 +0,0 @@
#!/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