summaryrefslogtreecommitdiffstats
path: root/ipaserver/plugins
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-02-27 15:04:46 -0500
committerRob Crittenden <rcritten@redhat.com>2009-02-27 23:18:19 -0500
commitbe0cac932af73fa1bcc5a64af9f2edde0c71cdc7 (patch)
tree46c121aceb0567c5208ec7b2da41d0230ef3dcc2 /ipaserver/plugins
parent1359618e7ee335b0721fbcd9705608ef09158e3b (diff)
downloadfreeipa-be0cac932af73fa1bcc5a64af9f2edde0c71cdc7.tar.gz
freeipa-be0cac932af73fa1bcc5a64af9f2edde0c71cdc7.tar.xz
freeipa-be0cac932af73fa1bcc5a64af9f2edde0c71cdc7.zip
Update objectclasses for groups, by default not posix groups.
This change depends on DS bugs 487574 and 487725. Groups cannot be promoted properly without these fixed. It will fail with an Object Class violation because gidNumber isn't set.
Diffstat (limited to 'ipaserver/plugins')
-rw-r--r--ipaserver/plugins/b_ldap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/plugins/b_ldap.py b/ipaserver/plugins/b_ldap.py
index 4e5f40a3..2f3c084e 100644
--- a/ipaserver/plugins/b_ldap.py
+++ b/ipaserver/plugins/b_ldap.py
@@ -202,7 +202,7 @@ class ldap(CrudBackend):
if attribute == "uid": # User
object_type = "posixAccount"
elif attribute == "cn": # Group
- object_type = "posixGroup"
+ object_type = "ipaUserGroup"
elif attribute == "krbprincipalname": # Service
object_type = "krbPrincipal"