diff options
author | Gerald Carter <jerry@samba.org> | 2003-06-05 02:34:30 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-06-05 02:34:30 +0000 |
commit | 3bdfd57a2dc590896a2e45652ad4f5e3c2358108 (patch) | |
tree | e846066e8dedaa62ffdd6b9e628b8c4f3a8dddc6 /examples/LDAP | |
parent | e8d5d89277694daac3ec83ce4f606baedcaa930e (diff) | |
download | samba-3bdfd57a2dc590896a2e45652ad4f5e3c2358108.tar.gz samba-3bdfd57a2dc590896a2e45652ad4f5e3c2358108.tar.bz2 samba-3bdfd57a2dc590896a2e45652ad4f5e3c2358108.zip |
working draft of the idmap_ldap code.
Includes sambaUnixIdPool objectclass
Still needs cleaning up wrt to name space.
More changes to come, but at least we now have a
a working distributed winbindd solution.
(This used to be commit 824175854421f7c27d31ad673a8790dd018ae350)
Diffstat (limited to 'examples/LDAP')
-rw-r--r-- | examples/LDAP/samba.schema | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/LDAP/samba.schema b/examples/LDAP/samba.schema index 3db7094bf2..9887954045 100644 --- a/examples/LDAP/samba.schema +++ b/examples/LDAP/samba.schema @@ -315,3 +315,13 @@ objectclass ( 1.3.6.1.4.1.7165.2.2.5 NAME 'sambaDomain' SUP top STRUCTURAL MUST ( sambaDomainName $ sambaNextGroupRid $ sambaNextUserRid $ sambaSID ) ) +## used for idmap_ldap module +objectclass ( 1.3.6.1.4.1.7165.1.2.2.7 NAME 'sambaUnixIdPool' SUP top AUXILIARY + DESC 'Pool for allocating UNIX uids/gids' + MUST ( uidNumber $ gidNumber ) ) + +objectclass ( 1.3.6.1.4.1.7165.1.2.2.8 NAME 'sambaIdmapEntry' SUP top STRUCTURAL + DESC 'Mapping from a SID to an ID' + MUST ( sambaSID ) + MAY ( uidNumber $ gidNumber )) + |