17 lines
396 B
Bash
17 lines
396 B
Bash
#!/usr/bin/env bash
|
|
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
LDAP_DB=/tmp/ldap_db
|
|
|
|
echo "Creating database directory"
|
|
|
|
rm -rf ${LDAP_DB} && mkdir ${LDAP_DB} && cp /usr/share/doc/slapd/examples/DB_CONFIG ${LDAP_DB}
|
|
|
|
echo "Launching OpenLDAP ..."
|
|
|
|
# Start slapd with non root privileges
|
|
slapd -h "ldap://0.0.0.0:3389/" -f ${DIR}/OpenLDAP/slapd.conf
|
|
|
|
# Wait for LDAP to start
|
|
sleep 1
|