#!/bin/sh
# $FreeBSD: ports/mail/sympa/pkg-deinstall,v 1.3 2004/10/25 13:09:19 clsung Exp $
#

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


syntax highlighted by Code2HTML, v. 0.9.1