1ffd1b5f21
saslauthd is a daemon process that handles plaintext authentication requests on behalf of the Cyrus SASL library. It may be compiled to support authentication using getpwent, PAM, or an LDAP database.
11 lines
176 B
Bash
11 lines
176 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1.1.1 2004/01/09 19:44:10 jlam Exp $
|
|
|
|
SASLSOCKETDIR=@SASLSOCKETDIR@
|
|
|
|
case ${STAGE} in
|
|
POST-DEINSTALL)
|
|
${RM} -rf ${SASLSOCKETDIR}
|
|
;;
|
|
esac
|