mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
15 lines
272 B
Bash
15 lines
272 B
Bash
|
#!/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
|
||
|
|
||
|
|