mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
a6b842f963
This reworks our LDAP backend code to move from anonymous access to a shared-secret SASL-protected connection. (SASL selects NTLM or DIGEST-MD5 on my system). To get this working, we must pre-populate the LDAP backend with a DN to store ths SASL secret on, and we use back-ldif for this. This gives us a reasonable basis to deploy a replicated OpenLDAP backend solution. Andrew Bartlett (This used to be commit cd0745253c4a9ec59a035e830e54d74a05b71aaa)
13 lines
295 B
Plaintext
13 lines
295 B
Plaintext
dn: cn=samba-admin
|
|
objectClass: top
|
|
objectClass: person
|
|
cn: samba-admin
|
|
userPassword:: ${LDAPADMINPASS_B64}
|
|
structuralObjectClass: person
|
|
entryUUID: ${UUID}
|
|
creatorsName:
|
|
createTimestamp: ${LDAPTIME}
|
|
entryCSN: 20080714010529.241038Z#000000#000#000000
|
|
modifiersName:
|
|
modifyTimestamp: ${LDAPTIME}
|