mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
- Make sure that PKGNAMESUFFIX and COMMENT are correctly set when building slave ports. [1] - Remove RCORDER feature which is now deprecated. - Move PORTREVISION related stuff to before bsd.port.pre.mk in order to get the revisions actually work. - Depend on CLIENT_ONLY and WITH_SASL to determine the package name suffix. - Make use of USE_OPENLDAP instead of rolling our own. - Use WITH_RC_SUBR correctly rather than just specifying "yes" - Depend on bsd.database.mk to determine the Berkeley DB name, which makes it possible to use versions available from the ports collection rather than making decision our own. [2] - Disable threading as suggested by openldap developers if BACK_SHELL is enabled. Indicate the fact when showing options. - Update to 2.3.23 PR: 91902[1], 96752 [2] Submitted by: Gyorgy TEUBEL <tgyurci freemail hu> [1] Sunpoet Po-Chuan Hsieh <sunpoet sunpoet net> [2] Approved by: sem (mentor) Other changes, blames and all bugs are mine.
44 lines
1.5 KiB
Bash
44 lines
1.5 KiB
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/net/openldap23-server/files/pkg-install.in,v 1.1 2006-05-18 15:03:48 delphij Exp $
|
|
#
|
|
|
|
CHOWN=/usr/sbin/chown
|
|
ECHO_CMD=echo
|
|
GREP=/usr/bin/grep
|
|
PKG_INFO=/usr/sbin/pkg_info
|
|
PW=/usr/sbin/pw
|
|
|
|
FTPUSERS=/etc/ftpusers
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
if ! ${PW} usershow -n ldap >/dev/null 2>&1; then
|
|
${ECHO_CMD}
|
|
if ! ${PW} groupshow -n ldap >/dev/null 2>&1; then
|
|
if ! ${PW} groupadd -n ldap -g 389; then
|
|
${ECHO_CMD} "*** Failed to add a group ldap with id 389."
|
|
${ECHO_CMD}
|
|
${ECHO_CMD} "Please add the ldap user manually with"
|
|
${ECHO_CMD} " ${PW} useradd -n ldap -g ldap -c 'OpenLDAP server' \\"
|
|
${ECHO_CMD} " -d /nonexistent -s /sbin/nologin -h -"
|
|
${ECHO_CMD} "and retry installing this package."
|
|
exit 1
|
|
fi
|
|
${ECHO_CMD} "===> Group 'ldap' created."
|
|
fi
|
|
if ! ${PW} useradd -n ldap -u 389 -g ldap -c 'OpenLDAP Server' \
|
|
-d /nonexistent -s /sbin/nologin -h -; then
|
|
${ECHO_CMD} "*** Failed to add an user ldap with id 389."
|
|
${ECHO_CMD}
|
|
${ECHO_CMD} "Please add the ldap user manually with"
|
|
${ECHO_CMD} " ${PW} useradd -n ldap -g ldap -c 'OpenLDAP server' \\"
|
|
${ECHO_CMD} " -d /nonexistent -s /sbin/nologin -h -"
|
|
${ECHO_CMD} "and retry installing this package."
|
|
exit 1
|
|
fi
|
|
${GREP} -qs '^ldap$' ${FTPUSERS} || ${ECHO_CMD} ldap >> ${FTPUSERS}
|
|
${ECHO_CMD} "===> Account 'ldap' created."
|
|
fi
|
|
;;
|
|
esac
|