#!/bin/sh
#
# $FreeBSD$
#

if [ "$2" != "POST-DEINSTALL" ]; then
    exit 0
fi

USER=interch

# Don't delete it, there may be ${USER} owned files around.
pw usershow "${USER}" >/dev/null 2>&1 \
	&& echo -e "*\n* To delete the user '${USER}' use 'pw userdel ${USER}'.\n*"

exit 0