#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.4 2004/03/29 05:47:31 jlam Exp $

SASLDB=@PKG_SYSCONFDIR@/sasldb.db

case ${STAGE} in
POST-DEINSTALL)
	if [ -f ${SASLDB} ]; then
		${CAT} << EOF
===========================================================================
You may want to remove the SASL password data file:

	${SASLDB}
===========================================================================
EOF
	fi
	;;
esac
