summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/hbacsvc.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2010-05-21 16:27:40 -0400
committerRob Crittenden <rcritten@redhat.com>2010-05-27 10:51:02 -0400
commite123fa66719c7f71587383406d3205d17e60f669 (patch)
tree3e2031fb473beb913fe58ab8bb236d1aa792d975 /ipalib/plugins/hbacsvc.py
parentfe7cb34f76a04e04e4dd0ffe9e1795752b422e26 (diff)
downloadfreeipa-e123fa66719c7f71587383406d3205d17e60f669.tar.gz
freeipa-e123fa66719c7f71587383406d3205d17e60f669.tar.xz
freeipa-e123fa66719c7f71587383406d3205d17e60f669.zip
Add ipaUniqueID to HBAC services and service groups
Also fix the memberOf attribute for the HBAC services
Diffstat (limited to 'ipalib/plugins/hbacsvc.py')
-rw-r--r--ipalib/plugins/hbacsvc.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/ipalib/plugins/hbacsvc.py b/ipalib/plugins/hbacsvc.py
index a85d94019..f6eda165f 100644
--- a/ipalib/plugins/hbacsvc.py
+++ b/ipalib/plugins/hbacsvc.py
@@ -36,10 +36,9 @@ class hbacsvc(LDAPObject):
container_dn = api.env.container_hbacservice
object_name = 'service'
object_name_plural = 'services'
- object_class = [
- 'ipahbacservice',
- ]
+ object_class = [ 'ipaobject', 'ipahbacservice' ]
default_attributes = ['cn', 'description']
+ uuid_attribute = 'ipauniqueid'
label = _('Services')