b885afa1a3
* 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.
19 lines
419 B
Bash
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
|