pkgsrc/security/cyrus-sasl/DEINSTALL
obache 4b38161ba2 Convert SASL_DBTYPE variable to option framework, and add gdbm support.
Fixes db name extension in DEINSTALL script for other than ndbm.

Bump PKGREVISION.
2013-03-13 03:31:40 +00:00

19 lines
426 B
Bash

#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.10 2013/03/13 03:31:40 obache Exp $
SASLDB=@PKG_SYSCONFDIR@/sasldb@DBEXT@
case ${STAGE} in
POST-DEINSTALL)
if ${TEST} -f ${SASLDB}; then
${CAT} << EOF
===========================================================================
You may want to remove the SASL password data file:
${SASLDB}
===========================================================================
EOF
fi
;;
esac