1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/mail/mailman/pkg-install
Johann Visagie fe127c87ad - Overdue update to version 2.0.13, a minor bugfix release
- Refrain from invoking ${PERL}
- Call Mailman's distributed check_perms script post-installation to fix file
  permissions instead of doing so manually.  This is more modular and will
  greatly ease maintenance of the port.  It implies a level of trust in
  check_perms... but then, installing and running any 3rd party software
  implies a level of trust.
2002-10-21 15:31:38 +00:00

80 lines
1.5 KiB
Bash

#! /bin/sh
make_account() {
local u uid g gid gcos home shell
u=$1
uid=$2
g=$3
gid=$4
gcos=$5
home=$6
shell=$7
if pw group show "${g}" >/dev/null 2>&1; then
echo "You already have a group \"${g}\", so I will use it."
else
echo -n "Adding group \"${g}\" (${gid})... "
if which -s pw; then
pw groupadd ${g} -g ${gid} || exit
echo "done."
else
exit 1
fi
fi
if pw user show "${u}" >/dev/null 2>&1; then
echo "You already have a user \"${u}\", so I will use it."
else
echo -n "Adding user \"${u}\" (${uid})... "
if which -s pw; then
pw useradd ${u} -u ${uid} -g ${g} -h - -d ${home} \
-s ${shell} -c "${gcos}" || exit
echo "done."
else
exit 1
fi
fi
if [ x"$home" != x ]; then
if [ ! -d "${home}" ]; then
echo -n "Creating ${u}'s home directory (${home})... "
(umask 002 && mkdir -p ${home}) || exit
chown -R ${u}:${g} ${home} || exit
chmod g+s ${home} || exit
echo "done."
fi
fi
}
create_crontab() {
local u file
u=$1
file=$2
echo -n "Creating crontab(5) file for Mailman user... "
crontab -u ${u} ${file} || exit
echo "done."
}
fix_perms() {
echo -n "Checking (and fixing) permissions... "
%%MAILMANDIR%%/bin/check_perms -f >/dev/null 2>&1
echo "done."
}
case $2 in
PRE-INSTALL)
make_account %%USER%% %%UID%% %%GROUP%% %%GID%% \
"Mailman User" "%%MAILMANDIR%%" "/sbin/nologin"
;;
POST-INSTALL)
create_crontab %%USER%% "%%MAILMANDIR%%/cron/crontab.in"
fix_perms
;;
esac