From be0cac932af73fa1bcc5a64af9f2edde0c71cdc7 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 27 Feb 2009 15:04:46 -0500 Subject: 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. --- ipaserver/plugins/b_ldap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipaserver/plugins/b_ldap.py') 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" -- cgit