10 lines
229 B
Plaintext
10 lines
229 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
echo "new docker-entrypoint.sh head"
|
||
|
|
||
|
pushd /etc
|
||
|
cat ldap.conf-tmpl | sed -e "s/%LDAPBASE%/$LDAPBASE/" -e "s,%LDAPURI%,$LDAPURI," -e "s/%LDAPBINDDN%/$LDAPBINDDN/" -e "s/%LDAPBINDPW%/$LDAPBINDPW/" > ldap.conf
|
||
|
popd
|
||
|
|
||
|
|