blob: 54414484c0c8be8f41be2dbe245480af2905bc4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
#
# $FreeBSD$
#
# Configure plgrenouille.
#
[ $# != 2 ] && exit 1
[ -z "${PKG_PREFIX}" ] && exit 1
PORTNAME=plgrenouille
SPOOL_DIR=/var/spool/${PORTNAME}
SPOOL_MODES=u+rw,go-rw
SPOOL_USER=daemon
case "$2" in
POST-INSTALL)
if [ ! -d ${SPOOL_DIR} ]; then
mkdir -p ${SPOOL_DIR} &&
chmod ${SPOOL_MODES} ${SPOOL_DIR} &&
chown ${SPOOL_USER} ${SPOOL_DIR}
fi
[ -n "${BATCH}" ] && exit 0
[ -f ${PKG_PREFIX}/etc/rc.d/plgrenouille.sh ] &&
sh ${PKG_PREFIX}/etc/rc.d/plgrenouille.sh configure
;;
DEINSTALL)
if [ -f ${PKG_PREFIX}/etc/rc.d/plgrenouille.sh ]; then
sh ${PKG_PREFIX}/etc/rc.d/plgrenouille.sh stop
fi
;;
POST-DEINSTALL)
if [ -d ${SPOOL_DIR} ]; then
rm -rf ${SPOOL_DIR}
fi
;;
esac
exit 0
|