From e1e2e020a748e115a5945a6e5ea44b50a3b98b94 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Thu, 29 Oct 2009 18:26:41 +0100 Subject: Remove 'ipaObject' objectClass from rolegroups and taskgroups. --- ipalib/plugins/rolegroup.py | 3 +-- ipalib/plugins/taskgroup.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'ipalib/plugins') diff --git a/ipalib/plugins/rolegroup.py b/ipalib/plugins/rolegroup.py index fdc632450..0d25516fc 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 4835266ec..56d2238ed 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', -- cgit