2015-02-18 15:23:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
2015-02-18 21:12:48 +00:00
|
|
|
chown openldap:openldap /var/lib/ldap/
|
|
|
|
|
|
|
|
if [[ -d /var/lib/ldap/config ]]; then
|
|
|
|
|
|
|
|
rm -rf /etc/ldap
|
|
|
|
ln -s /var/lib/ldap/config /etc/ldap
|
|
|
|
|
|
|
|
else
|
2015-02-18 15:23:34 +00:00
|
|
|
|
|
|
|
if [[ -z "$SLAPD_PASSWORD" ]]; then
|
|
|
|
echo >&2 "Error: slapd not configured and SLAPD_PASSWORD not set"
|
|
|
|
echo >&2 "Did you forget to add -e SLAPD_PASSWORD=... ?"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z "$SLAPD_DOMAIN" ]]; then
|
|
|
|
echo >&2 "Error: slapd not configured and SLAPD_DOMAIN not set"
|
|
|
|
echo >&2 "Did you forget to add -e SLAPD_DOMAIN=... ?"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
SLAPD_ORGANIZATION="${SLAPD_ORGANIZATION:-${SLAPD_DOMAIN}}"
|
|
|
|
|
|
|
|
cat <<-EOF | debconf-set-selections
|
|
|
|
slapd slapd/no_configuration boolean false
|
|
|
|
slapd slapd/password1 password $SLAPD_PASSWORD
|
|
|
|
slapd slapd/password2 password $SLAPD_PASSWORD
|
|
|
|
slapd shared/organization string $SLAPD_ORGANIZATION
|
|
|
|
slapd slapd/domain string $SLAPD_DOMAIN
|
|
|
|
slapd slapd/backend select hdb
|
|
|
|
slapd slapd/allow_ldap_v2 boolean false
|
|
|
|
slapd slapd/purge_database boolean false
|
|
|
|
slapd slapd/move_old_database boolean true
|
|
|
|
EOF
|
|
|
|
|
2015-02-18 19:43:34 +00:00
|
|
|
dpkg-reconfigure -f noninteractive slapd >/dev/null 2>&1
|
2015-02-18 15:23:34 +00:00
|
|
|
|
|
|
|
dc_string=""
|
|
|
|
|
|
|
|
IFS="."; declare -a dc_parts=($SLAPD_DOMAIN)
|
|
|
|
|
|
|
|
for dc_part in "${dc_parts[@]}"; do
|
|
|
|
dc_string="$dc_string,dc=$dc_part"
|
|
|
|
done
|
|
|
|
|
|
|
|
base_string="BASE ${dc_string:1}"
|
|
|
|
|
|
|
|
sed -i "s/^#BASE.*/${base_string}/g" /etc/ldap/ldap.conf
|
|
|
|
|
2015-02-19 02:12:12 +00:00
|
|
|
if [[ -n "$SLAPD_CONFIG_PASSWORD" ]]; then
|
2015-02-18 19:43:34 +00:00
|
|
|
password_hash=`slappasswd -s "${SLAPD_CONFIG_PASSWORD}"`
|
|
|
|
|
2015-02-18 21:12:48 +00:00
|
|
|
sed_safe_password_hash=${password_hash//\//\\\/}
|
|
|
|
|
2015-02-18 19:43:34 +00:00
|
|
|
slapcat -n0 -F /etc/ldap/slapd.d -l /tmp/config.ldif
|
2015-02-18 20:28:26 +00:00
|
|
|
sed -i "s/\(olcRootDN: cn=admin,cn=config\)/\1\nolcRootPW: ${sed_safe_password_hash}/g" /tmp/config.ldif
|
2015-02-18 19:43:34 +00:00
|
|
|
rm -rf /etc/ldap/slapd.d/*
|
|
|
|
slapadd -n0 -F /etc/ldap/slapd.d -l /tmp/config.ldif >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
2015-02-19 02:12:12 +00:00
|
|
|
if [[ -n "$SLAPD_ADDITIONAL_SCHEMAS" ]]; then
|
|
|
|
IFS=","; declare -a schemas=($SLAPD_ADDITIONAL_SCHEMAS)
|
|
|
|
|
|
|
|
for schema in "${schemas[@]}"; do
|
|
|
|
slapadd -n0 -F /etc/ldap/slapd.d -l "/etc/ldap/schema/${schema}.ldif" >/dev/null 2>&1
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2015-02-18 21:12:48 +00:00
|
|
|
mv /etc/ldap /var/lib/ldap/config
|
|
|
|
ln -s /var/lib/ldap/config /etc/ldap
|
2015-02-18 15:23:34 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
exec "$@"
|