From 88133ab43cecc68248bb95014d1716aa5b74bc75 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 29 Nov 2010 17:09:35 -0500 Subject: Create user private groups with a uniqueid. If we don't then we need to add it when a group is detached causing aci issues. I had to move where we create the UPG template until after the DS restart so the schema is available. ticket 542 --- ipalib/plugins/group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/group.py') diff --git a/ipalib/plugins/group.py b/ipalib/plugins/group.py index 5db3c67ec..f26792a56 100644 --- a/ipalib/plugins/group.py +++ b/ipalib/plugins/group.py @@ -272,7 +272,7 @@ class group_remove_member(LDAPRemoveMember): api.register(group_remove_member) -class group_detach(LDAPRemoveMember): +class group_detach(LDAPQuery): """ Detach a managed group from a user """ -- cgit