ab147d0e74
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.
20 lines
415 B
Bash
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
|