freebsd-ports/mail/qmail-scanner1/pkg-install
Pav Lucistnik c717e128f0 - Update to 1.22
PR:		ports/65974
Submitted by:	<freebsd@simplerezo.com> (maintainer)
2004-05-30 00:37:26 +00:00

45 lines
1 KiB
Bash

#!/bin/sh
CHMOD=/bin/chmod
CHOWN=/usr/sbin/chown
MKDIR=/bin/mkdir
PW=/usr/sbin/pw
GU_ID=98
GU_NAME=qscand
PREFIX=${PKG_PREFIX}
SPOOLDIR=${PREFIX}/qmailscan
case "$2" in
PRE-INSTALL)
# User and group
${PW} groupshow -n ${GU_NAME} >/dev/null 2>&1 \
|| ${PW} groupadd -n ${GU_NAME} -g ${GU_ID}
${PW} usershow -n ${GU_NAME} >/dev/null 2>&1 \
|| ${PW} useradd ${GU_NAME} -g ${GU_NAME} -u ${GU_ID} -s /sbin/nologin
${MKDIR} -p ${SPOOLDIR}
${MKDIR} -p ${PREFIX}/share/examples/qs2mrtg
;;
POST-INSTALL)
# Directories
for i in quarantine working archives; do
for j in tmp cur new; do
${MKDIR} -p ${SPOOLDIR}/$i/$j
done
done
${MKDIR} -p ${SPOOLDIR}/tmp
# Mod and owner
${CHOWN} -R ${GU_NAME}:${GU_NAME} ${SPOOLDIR}
${CHOWN} ${GU_NAME}:${GU_NAME} ${PREFIX}/bin/qmail-scanner-queue.pl
${CHMOD} 4755 ${PREFIX}/bin/qmail-scanner-queue.pl
# Initialize
${PREFIX}/bin/qmail-scanner-queue.pl -z
${PREFIX}/bin/qmail-scanner-queue.pl -g
# Mod and owner (final)
${CHOWN} -R ${GU_NAME}:${GU_NAME} ${SPOOLDIR}
;;
esac