pkgsrc/security/cyrus-sasl2/DEINSTALL
jlam ab147d0e74 Update cyrus-sasl2 to 2.1.15nb2. Changes from version 2.1.15nb1 are
splitting out the saslauthd daemon into a separate package,
security/cyrus-saslauthd.  This allows the saslauthd daemon to
support additional database backends for plaintext authentication
without adding unrelated dependencies to the cyrus-sasl2 package.
2004-01-09 19:37:48 +00:00

20 lines
415 B
Bash

#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.3 2004/01/09 19:37:48 jlam Exp $
SASLDB=@PKG_SYSCONFDIR@/sasldb.db
case ${STAGE} in
POST-DEINSTALL)
if [ -e ${SASLDB} ]
then
${CAT} << EOF
===========================================================================
You may want to remove the SASL password data file:
${SASLDB}
===========================================================================
EOF
fi
;;
esac