diff options
author | Jim McDonough <jmcd@samba.org> | 2003-04-03 03:30:25 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-04-03 03:30:25 +0000 |
commit | 87c7c582c60521da3a93d997386fe79935012aea (patch) | |
tree | 56d9e6ed676a2d5bc7bf41d758cf74b7940faf45 /examples | |
parent | 214b217b276f43edfddd1664afaae0fa6b2c319f (diff) | |
download | samba-87c7c582c60521da3a93d997386fe79935012aea.tar.gz samba-87c7c582c60521da3a93d997386fe79935012aea.tar.xz samba-87c7c582c60521da3a93d997386fe79935012aea.zip |
The ldap idmap backend from Anthony Liguori (aliguori@us.ibm.com):
This patch moves the ldap routines out of passdb into a generic
library and implements an LDAP backend for IDMAP. THe backend
can be enabled with "idmap backend = ldap" in smb.conf. THere
are also schema changes to make sure to update teh ldap schema files.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/LDAP/samba.schema | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/LDAP/samba.schema b/examples/LDAP/samba.schema index e801e0b8479..a4435564ecd 100644 --- a/examples/LDAP/samba.schema +++ b/examples/LDAP/samba.schema @@ -167,11 +167,11 @@ objectclass ( 1.3.6.1.4.1.7165.2.2.4 NAME 'sambaGroupMapping' SUP top AUXILIARY ## ## Used for Winbind experimentation ## -#objectclass ( 1.3.6.1.4.1.7165.1.2.2.3 NAME 'uidPool' SUP top AUXILIARY -# DESC 'Pool for allocating UNIX uids' -# MUST ( uidNumber $ cn ) ) +objectclass ( 1.3.6.1.4.1.7165.1.2.2.3 NAME 'uidPool' SUP top AUXILIARY + DESC 'Pool for allocating UNIX uids' + MUST ( uidNumber $ cn ) ) -#objectclass ( 1.3.6.1.4.1.7165.1.2.2.4 NAME 'gidPool' SUP top AUXILIARY -# DESC 'Pool for allocating UNIX gids' -# MUST ( gidNumber $ cn ) ) +objectclass ( 1.3.6.1.4.1.7165.1.2.2.4 NAME 'gidPool' SUP top AUXILIARY + DESC 'Pool for allocating UNIX gids' + MUST ( gidNumber $ cn ) ) |