mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
5c9c7a01ff
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>
16 lines
321 B
Bash
16 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
|