aboutsummaryrefslogtreecommitdiff
path: root/mail/qmail-scanner1/pkg-install
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2007-01-29 10:14:29 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2007-01-29 10:14:29 +0000
commitcec49cf8f48420d4e91f2d480cf281bd2d79e999 (patch)
tree26a0b2f13d3c39b0da0fdcdd6f2fdbf06bdc636e /mail/qmail-scanner1/pkg-install
parent6a1c5fb9a79f259c9737a9bfa2ce5a164672585b (diff)
Notes
Diffstat (limited to 'mail/qmail-scanner1/pkg-install')
-rw-r--r--mail/qmail-scanner1/pkg-install45
1 files changed, 0 insertions, 45 deletions
diff --git a/mail/qmail-scanner1/pkg-install b/mail/qmail-scanner1/pkg-install
deleted file mode 100644
index e42be90badcb..000000000000
--- a/mail/qmail-scanner1/pkg-install
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/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