pkgsrc/security/cyrus-sasl/DEINSTALL
jlam b885afa1a3 Updated security/cyrus-sasl to 2.1.21. Changes from version 2.1.20 include:
* lib/dlopen.c: log the reason for opendir() failure
  when loading plugin.
* lib/common.c: honor log level setting
* sample/sample-client.c, sample/sample-server.c: Fixed several
  64 bit portability warnings.
* utils/testsuite.c: Fixed several 64 bit portability warnings.
* utils/saslpasswd.c: Fixed typo in an auxprop name.
* include/saslplug.h, lib/common.c, lib/saslint.h,
  lib/server.c: Added sasl_server_plugin_info().
* lib/common.c: initialize path in case caller didn't.
2006-04-18 17:41:30 +00:00

19 lines
419 B
Bash

#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.9 2006/04/18 17:41:30 jlam Exp $
SASLDB=@PKG_SYSCONFDIR@/sasldb.db
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