diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:20:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:20:00 +0000 |
commit | 8daa83a594a2e98f39d764422bfbdbc62c9efd44 (patch) | |
tree | 4099e8021376c7d8c05bdf8503093d80e9c7bad0 /source4/setup/provision_self_join.ldif | |
parent | Initial commit. (diff) | |
download | samba-8daa83a594a2e98f39d764422bfbdbc62c9efd44.tar.xz samba-8daa83a594a2e98f39d764422bfbdbc62c9efd44.zip |
Adding upstream version 2:4.20.0+dfsg.upstream/2%4.20.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'source4/setup/provision_self_join.ldif')
-rw-r--r-- | source4/setup/provision_self_join.ldif | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/source4/setup/provision_self_join.ldif b/source4/setup/provision_self_join.ldif new file mode 100644 index 0000000..e7a711f --- /dev/null +++ b/source4/setup/provision_self_join.ldif @@ -0,0 +1,34 @@ +# Accounts for selfjoin (joins DC to itself) + +# Object under "Domain Controllers" +dn: CN=${NETBIOSNAME},OU=Domain Controllers,${DOMAINDN} +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: user +objectClass: computer +accountExpires: 9223372036854775807 +dNSHostName: ${DNSNAME} +# "MSDFSR-ComputerReferenceBL" doesn't exist since we still miss DFSR support +# "isCritcalSystemObject" is now filled in by the samldb LDB module +localPolicyFlags: 0 +operatingSystem: ${OPERATING_SYSTEM} +operatingSystemVersion: ${OPERATING_SYSTEM_VERSION} +sAMAccountName: ${NETBIOSNAME}$ +userAccountControl: 532480 +clearTextPassword:: ${MACHINEPASS_B64} +objectSid: ${DOMAINSID}-${DCRID} +# While some "servicePrincipalName" updates might be handled by the +# "samba_spnupdate" script, we need to get the basics in here before +# we add any others. +servicePrincipalName: HOST/${DNSNAME} +servicePrincipalName: HOST/${NETBIOSNAME} +servicePrincipalName: HOST/${DNSNAME}/${DNSNAME} + + +dn: CN=RID Set,CN=${NETBIOSNAME},OU=Domain Controllers,${DOMAINDN} +objectClass: rIDSet +rIDAllocationPool: ${RIDALLOCATIONSTART}-${RIDALLOCATIONEND} +rIDPreviousAllocationPool: ${RIDALLOCATIONSTART}-${RIDALLOCATIONEND} +rIDUsedPool: 0 +rIDNextRID: ${RIDALLOCATIONSTART} |