mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Feature: provide multildap server configuration * Add multildap server configuration for devenv * Change some of the notes for openldap devenv configuration * Change the maintainer label for *main* dockerfile and of the devenv one Re-checked the multildap logic - everything seems to be working fine
15 lines
272 B
Bash
Executable File
15 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Pre-populating ldap entries, first waiting for ldap to start"
|
|
|
|
sleep 3
|
|
|
|
adminUserDn="cn=admin,dc=grafana,dc=org"
|
|
adminPassword="grafana"
|
|
|
|
for file in `ls /etc/ldap/prepopulate/*.ldif`; do
|
|
ldapadd -x -D $adminUserDn -w $adminPassword -f "$file"
|
|
done
|
|
|
|
|