diff options
author | Pavel Zuna <pzuna@redhat.com> | 2009-10-29 18:26:41 +0100 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-11-18 14:37:15 -0500 |
commit | e1e2e020a748e115a5945a6e5ea44b50a3b98b94 (patch) | |
tree | dc1fefa9c6f8e41d82e4e019897b6720587fe61d /ipalib | |
parent | f5d63dbecca753321d3d621c0ad2402cfe928a0c (diff) | |
download | freeipa-e1e2e020a748e115a5945a6e5ea44b50a3b98b94.tar.gz freeipa-e1e2e020a748e115a5945a6e5ea44b50a3b98b94.tar.xz freeipa-e1e2e020a748e115a5945a6e5ea44b50a3b98b94.zip |
Remove 'ipaObject' objectClass from rolegroups and taskgroups.
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/plugins/rolegroup.py | 3 | ||||
-rw-r--r-- | ipalib/plugins/taskgroup.py | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/ipalib/plugins/rolegroup.py b/ipalib/plugins/rolegroup.py index fdc63245..0d25516f 100644 --- a/ipalib/plugins/rolegroup.py +++ b/ipalib/plugins/rolegroup.py @@ -33,9 +33,8 @@ class rolegroup(LDAPObject): container_dn = api.env.container_rolegroup object_name = 'rolegroup' object_name_plural = 'rolegroups' - object_class = ['ipaobject', 'groupofnames', 'nestedgroup'] + object_class = ['groupofnames', 'nestedgroup'] default_attributes = ['cn', 'description', 'member', 'memberof'] - uuid_attribute = 'ipauniqueid' attribute_names = { 'cn': 'name', 'member user': 'member users', diff --git a/ipalib/plugins/taskgroup.py b/ipalib/plugins/taskgroup.py index 4835266e..56d2238e 100644 --- a/ipalib/plugins/taskgroup.py +++ b/ipalib/plugins/taskgroup.py @@ -32,9 +32,8 @@ class taskgroup(LDAPObject): container_dn = api.env.container_taskgroup object_name = 'taskgroup' object_name_plural = 'taskgroups' - object_class = ['ipaobject', 'groupofnames'] + object_class = ['groupofnames'] default_attributes = ['cn', 'description', 'member', 'memberof'] - uuid_attribute = 'ipauniqueid' attribute_names = { 'cn': 'name', 'member user': 'member users', |