pkgsrc/security/cyrus-sasl/DEINSTALL
jlam e2afa97f51 Merge changes in packages from the buildlink2 branch that have
buildlink2.mk files back into the main trunk.  This provides sufficient
buildlink2 infrastructure to start merging other packages from the
buildlink2 branch that have already been converted to use the buildlink2
framework.
2002-08-25 18:38:05 +00:00

23 lines
497 B
Bash

#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.6 2002/08/25 18:39:49 jlam Exp $
SASLDB=@PKG_SYSCONFDIR@/sasldb.db
SASLSOCKETDIR=@SASLSOCKETDIR@
case ${STAGE} in
POST-DEINSTALL)
${RM} -f /usr/lib/sasl
${RM} -rf ${SASLSOCKETDIR}
if [ -e ${SASLDB} ]
then
${CAT} << EOF
===========================================================================
You may want to remove the SASL password data file:
${SASLDB}
===========================================================================
EOF
fi
;;
esac