diff options
author | Volker Lendecke <vlendec@samba.org> | 2004-12-23 12:14:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:07:37 -0500 |
commit | 4d6a13debb2ffd41d1fb6b0298bba5d3dea9c5e9 (patch) | |
tree | 4b4c529fb2d4501dcd4024bf10968d2aecd6f783 /source4 | |
parent | e4b8399af6e1ea3530e2e22b83a7416fe52fc404 (diff) | |
download | samba-4d6a13debb2ffd41d1fb6b0298bba5d3dea9c5e9.tar.gz samba-4d6a13debb2ffd41d1fb6b0298bba5d3dea9c5e9.tar.xz samba-4d6a13debb2ffd41d1fb6b0298bba5d3dea9c5e9.zip |
r4345: Unify the representation of grouptype and samaccounttype to hex. Without any
kind of schema support we only have string comparisons (Hmm. Is this true?)
and must agree upon a common representation for integers. I suspect that we
might sooner or later need a search filter for "This bit in this integer
attrib is being set".
Volker
(This used to be commit 5f2d93b66bc89d499c91638f9b71394768d135af)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/provision.ldif | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/source4/provision.ldif b/source4/provision.ldif index 9edcc25576..51d3db3e3a 100644 --- a/source4/provision.ldif +++ b/source4/provision.ldif @@ -570,8 +570,8 @@ name: Domain Computers objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-515 sAMAccountName: Domain Computers -sAMAccountType: 268435456 -groupType: -2147483646 +sAMAccountType: 0x10000000 +groupType: 0x80000002 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE @@ -590,8 +590,8 @@ objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-516 adminCount: 1 sAMAccountName: Domain Controllers -sAMAccountType: 268435456 -groupType: -2147483646 +sAMAccountType: 0x10000000 +groupType: 0x80000002 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE @@ -611,8 +611,8 @@ objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-518 adminCount: 1 sAMAccountName: Schema Admins -sAMAccountType: 268435456 -groupType: -2147483646 +sAMAccountType: 0x10000000 +groupType: 0x80000002 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE unixName: ${WHEEL} @@ -634,8 +634,8 @@ objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-519 adminCount: 1 sAMAccountName: Enterprise Admins -sAMAccountType: 268435456 -groupType: -2147483646 +sAMAccountType: 0x10000000 +groupType: 0x80000002 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE unixName: ${WHEEL} @@ -655,7 +655,7 @@ objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-517 sAMAccountName: Cert Publishers sAMAccountType: 0x20000000 -groupType: -2147483644 +groupType: 0x80000004 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE @@ -676,8 +676,8 @@ objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-512 adminCount: 1 sAMAccountName: Domain Admins -sAMAccountType: 268435456 -groupType: -2147483646 +sAMAccountType: 0x10000000 +groupType: 0x80000002 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE unixName: ${WHEEL} @@ -697,8 +697,8 @@ name: Domain Users objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-513 sAMAccountName: Domain Users -sAMAccountType: 268435456 -groupType: -2147483646 +sAMAccountType: 0x10000000 +groupType: 0x80000002 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE unixName: ${USERS} @@ -718,8 +718,8 @@ name: Domain Guests objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-514 sAMAccountName: Domain Guests -sAMAccountType: 268435456 -groupType: -2147483646 +sAMAccountType: 0x10000000 +groupType: 0x80000002 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE @@ -738,8 +738,8 @@ name: Group Policy Creator Owners objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-520 sAMAccountName: Group Policy Creator Owners -sAMAccountType: 268435456 -groupType: -2147483646 +sAMAccountType: 0x10000000 +groupType: 0x80000002 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE unixName: ${WHEEL} @@ -759,7 +759,7 @@ objectGUID: ${NEWGUID} objectSid: ${DOMAINSID}-553 sAMAccountName: RAS and IAS Servers sAMAccountType: 0x20000000 -groupType: -2147483644 +groupType: 0x80000004 objectCategory: CN=Group,CN=Schema,CN=Configuration,${BASEDN} isCriticalSystemObject: TRUE |