summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/group.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2010-11-29 17:09:35 -0500
committerRob Crittenden <rcritten@redhat.com>2010-11-30 09:52:05 -0500
commit88133ab43cecc68248bb95014d1716aa5b74bc75 (patch)
tree1f7a553f4bf1fda4b0af8b4553a1860e058b9163 /ipalib/plugins/group.py
parentdf28017eafc5c51f1fc136b2cae6169456d3c963 (diff)
downloadfreeipa-88133ab43cecc68248bb95014d1716aa5b74bc75.tar.gz
freeipa-88133ab43cecc68248bb95014d1716aa5b74bc75.tar.xz
freeipa-88133ab43cecc68248bb95014d1716aa5b74bc75.zip
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
Diffstat (limited to 'ipalib/plugins/group.py')
-rw-r--r--ipalib/plugins/group.py2
1 files changed, 1 insertions, 1 deletions
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
"""