dependency, since the cache-cleaning script is a perl script (noted by Amitai Schlair in private email). Also change the permissions on the ldap config files so that LDAP searches have a better chance of succeeding. XXX - The global LDAP searches still don't work, but I haven't yet figured XXX - out why. The queries return records when executed on the command XXX - line, but the records aren't being displayed by sqwebmail.
19 lines
469 B
Text
19 lines
469 B
Text
# $NetBSD: INSTALL,v 1.1 2002/01/24 20:52:20 jlam Exp $
|
|
|
|
SYSCONFTOOL="@SYSCONFTOOL@"
|
|
EGDIR=${PKG_PREFIX}/share/examples/courier
|
|
GEN_FILES="@GEN_FILES@"
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
eval set -- ${GEN_FILES}
|
|
for file
|
|
do
|
|
# Merge new config files with the old ones.
|
|
${CP} ${EGDIR}/${file}.dist @PKG_SYSCONFDIR@/${file}.dist
|
|
${SYSCONFTOOL} @PKG_SYSCONFDIR@/${file}
|
|
${CHMOD} 0644 @PKG_SYSCONFDIR@/${file}
|
|
${RM} -f @PKG_SYSCONFDIR@/${file}.dist
|
|
done
|
|
;;
|
|
esac
|