3eada221c5
This package contains the authentication daemon, modules, and utilities for the Courier mail packages.
19 lines
473 B
Text
19 lines
473 B
Text
# $NetBSD: INSTALL,v 1.1.1.1 2002/01/22 22:00:22 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} 0600 @PKG_SYSCONFDIR@/${file}
|
|
${RM} -f @PKG_SYSCONFDIR@/${file}.dist
|
|
done
|
|
;;
|
|
esac
|