diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-01-05 15:20:10 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-01-08 13:02:58 +1100 |
commit | a1362492ab71a8853d2292d55b35e5c90de9448e (patch) | |
tree | 063e9c213418d5de74cbc0367fab4051794d4077 /source4/setup | |
parent | bd6d0e93795589f18894b4e3837970436969fc60 (diff) | |
download | samba-a1362492ab71a8853d2292d55b35e5c90de9448e.tar.gz samba-a1362492ab71a8853d2292d55b35e5c90de9448e.tar.bz2 samba-a1362492ab71a8853d2292d55b35e5c90de9448e.zip |
s4-provision: added an initial RID Set
We will allocate RIDs from this set
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/setup')
-rw-r--r-- | source4/setup/provision.ldif | 3 | ||||
-rw-r--r-- | source4/setup/provision_self_join.ldif | 11 |
2 files changed, 12 insertions, 2 deletions
diff --git a/source4/setup/provision.ldif b/source4/setup/provision.ldif index 395d404268..db29d3a108 100644 --- a/source4/setup/provision.ldif +++ b/source4/setup/provision.ldif @@ -431,7 +431,8 @@ dn: CN=RID Manager$,CN=System,${DOMAINDN} objectClass: top objectClass: rIDManager systemFlags: -1946157056 -rIDAvailablePool: 4611686014132423217 +# we have granted up to 1499 to ourselves in a RID Set +rIDAvailablePool: 1500-1073741823 isCriticalSystemObject: TRUE dn: CN=RpcServices,CN=System,${DOMAINDN} diff --git a/source4/setup/provision_self_join.ldif b/source4/setup/provision_self_join.ldif index 0d28b51a43..f110902316 100644 --- a/source4/setup/provision_self_join.ldif +++ b/source4/setup/provision_self_join.ldif @@ -15,7 +15,7 @@ localPolicyFlags: 0 operatingSystem: Samba operatingSystemVersion: ${SAMBA_VERSION_STRING} primaryGroupID: 516 -# "rIDSetReferences" doesn't exist since we still miss distributed RIDs +rIDSetReferences: CN=RID Set,CN=${NETBIOSNAME},OU=Domain Controllers,${DOMAINDN} sAMAccountName: ${NETBIOSNAME}$ # "servicePrincipalName" for FRS doesn't exit since we still miss FRS support # "servicePrincipalName"s for DNS ("ldap/../ForestDnsZones", @@ -34,6 +34,15 @@ servicePrincipalName: ldap/${DNSNAME}/${REALM} userAccountControl: 532480 userPassword:: ${MACHINEPASS_B64} +dn: CN=RID Set,CN=${NETBIOSNAME},OU=Domain Controllers,${DOMAINDN} +objectClass: top +objectClass: rIDSet +rIDAllocationPool: 1000-1499 +rIDPreviousAllocationPool: 1000-1499 +rIDUsedPool: 0 +rIDNextRID: 1000 + + # Here are missing the objects for the NTFRS subscription and the RID set since # we don't support those techniques (FRS, distributed RIDs) yet. |