bbc8d61610
- Don't show OPTIONS dialog for just DOCS option - Tidy up port Makefile - Rework rc script - Add UPDATING message and pkg-message to inform users about the rc script changes PR: ports/178644 Submitted by: Darren Pilgrim <ports.maintainer@evilphi.com> (maintainer)
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
#! /bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PATH=/bin:/usr/bin:/usr/sbin
|
|
|
|
case $2 in
|
|
|
|
PRE-INSTALL)
|
|
if [ -z "%%POSTGREYDIR%%" -o -z "%%USER%%" -o -z "%%GROUP%%" ]; then
|
|
echo "ERROR: A required pragma was empty"
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
POST-INSTALL)
|
|
echo "---> Starting post-install script:"
|
|
|
|
# Create home directory if required
|
|
if [ -d "%%POSTGREYDIR%%" ]; then
|
|
echo "---> Using existing Postgrey database directory (%%POSTGREYDIR%%)"
|
|
echo " (There may be existing active postgrey databases - this installation"
|
|
echo " will attempt to preserve them.)"
|
|
else
|
|
echo "---> Creating Postgrey database directory (%%POSTGREYDIR%%)"
|
|
(umask 002 && /bin/mkdir -p "%%POSTGREYDIR%%") || exit 1
|
|
/usr/sbin/chown -R "%%USER%%:%%GROUP%%" "%%POSTGREYDIR%%" || exit 1
|
|
/bin/chmod g+s "%%POSTGREYDIR%%" || exit 1
|
|
fi
|
|
|
|
for i in %%ETCFILES%%; do
|
|
if [ ! -f "%%PREFIX%%/etc/postfix/postgrey_${i}" ]; then
|
|
echo "---> Installing new config file %%PREFIX%%/etc/postfix/postgrey_${i}"
|
|
cp -p %%PREFIX%%/etc/postfix/dist-postgrey_${i} \
|
|
%%PREFIX%%/etc/postfix/postgrey_${i}
|
|
else
|
|
echo "---> Keeping existing config file %%PREFIX%%/etc/postfix/postgrey_${i}"
|
|
fi
|
|
done
|
|
;;
|
|
|
|
esac
|