mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
b1dabb1133
1. During instance creation the provisioning script will import the SASL mapping for samba-admin. It's done here due to missing config schema preventing adding the mapping via ldapi. 2. After that it will use ldif2db to import the cn=samba-admin user as the target of SASL mapping. 3. Then it will start FDS and continue to do provisioning using the Directory Manager with simple bind. 4. The SASL credentials will be stored in secrets.ldb, so when Samba server runs later it will use the SASL credentials. 5. After the provisioning is done (just before stopping the slapd) it will use the DM over direct ldapi to delete the default SASL mappings included automatically by FDS, leaving just the new samba-admin mapping. 6. Also before stopping slapd it will use the DM over direct ldapi to set the ACL on the root entries of the user, configuration, and schema partitions. The ACL will give samba-admin the full access to these partitions. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
dn: cn="${CONFIGDN}",cn=mapping tree,cn=config
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
objectclass: nsMappingTree
|
|
nsslapd-state: backend
|
|
nsslapd-backend: configData
|
|
cn: ${CONFIGDN}
|
|
|
|
dn: cn=configData,cn=ldbm database,cn=plugins,cn=config
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
objectclass: nsBackendInstance
|
|
nsslapd-suffix: ${CONFIGDN}
|
|
cn: configData
|
|
|
|
dn: cn="${SCHEMADN}",cn=mapping tree,cn=config
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
objectclass: nsMappingTree
|
|
nsslapd-state: backend
|
|
nsslapd-backend: schemaData
|
|
cn: ${SCHEMADN}
|
|
|
|
dn: cn=schemaData,cn=ldbm database,cn=plugins,cn=config
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
objectclass: nsBackendInstance
|
|
nsslapd-suffix: ${SCHEMADN}
|
|
cn: schemaData
|
|
|
|
dn: cn="${SAMBADN}",cn=mapping tree,cn=config
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
objectclass: nsMappingTree
|
|
nsslapd-state: backend
|
|
nsslapd-backend: sambaData
|
|
cn: ${SAMBADN}
|
|
|
|
dn: cn=sambaData,cn=ldbm database,cn=plugins,cn=config
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
objectclass: nsBackendInstance
|
|
nsslapd-suffix: ${SAMBADN}
|
|
cn: sambaData
|
|
|