forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
15 lines
321 B
Bash
15 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
|