freebsd-ports/www/web2ldap/pkg-install
Alexey Dokuchaev f6f36be196 - Resurrect and update to version 1.5.112
- Actualize dependencies and pkg-message
2021-01-29 13:35:49 +00:00

20 lines
281 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
PREFIX=${PKG_PREFIX:-/usr/local}
DATADIR=${PREFIX}/share/web2ldap
MKDIR=/bin/mkdir
case "$2" in
POST-INSTALL)
${MKDIR} -p ${DATADIR}/var ${DATADIR}/var/log ${DATADIR}/var/run
if [ -w /var/log ]; then
${MKDIR} /var/log/web2ldap
fi
;;
esac
exit 0