aboutsummaryrefslogtreecommitdiff
path: root/dns/adsuck
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2019-12-20 06:45:27 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2019-12-20 06:45:27 +0000
commit7326c7b96a43c27773e3739041646dbfa3459f35 (patch)
tree085d507d64fa97d90eafa4b6735094e36baa5235 /dns/adsuck
parent88bdd24fa4f8a10e40812db4b3c61f46f28ec807 (diff)
downloadports-7326c7b96a43c27773e3739041646dbfa3459f35.tar.gz
ports-7326c7b96a43c27773e3739041646dbfa3459f35.zip
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.
Notes
Notes: svn path=/head/; revision=520477
Diffstat (limited to 'dns/adsuck')
-rw-r--r--dns/adsuck/Makefile2
-rw-r--r--dns/adsuck/pkg-deinstall15
2 files changed, 1 insertions, 16 deletions
diff --git a/dns/adsuck/Makefile b/dns/adsuck/Makefile
index 84b3e1e3be89..fa7fd4712bf0 100644
--- a/dns/adsuck/Makefile
+++ b/dns/adsuck/Makefile
@@ -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/
diff --git a/dns/adsuck/pkg-deinstall b/dns/adsuck/pkg-deinstall
deleted file mode 100644
index b9e79cff364c..000000000000
--- a/dns/adsuck/pkg-deinstall
+++ /dev/null
@@ -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