#!/bin/sh
#
# $FreeBSD: ports/mail/sympa5/pkg-deinstall,v 1.1 2005/09/29 13:02:52 garga 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