freebsd-ports/mail/sympa/pkg-deinstall
Cheng-Lung Sung fdc8193123 - Update to 4.1.2
PR:		ports/73101
Submitted by:	clsung
Approved by:	maintainer (Autrijus Tang), co-mentor (vanilla)
2004-10-25 13:09:20 +00:00

21 lines
361 B
Bash

#!/bin/sh
# $FreeBSD$
#
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
USER=sympa
GROUP=${USER}
if pw groupshow "${USER}" 2>/dev/null 1>&2; then
echo "To delete the 'sympa' group permanently, use 'pw groupdel ${USER}'"
fi
if pw usershow "${USER}" 2>/dev/null 1>&2; then
echo "To delete the 'sympa' user permanently, use 'pw userdel ${USER}'"
fi
exit 0