summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/hbac.py
diff options
context:
space:
mode:
authorPavel Zuna <pzuna@redhat.com>2009-12-10 16:39:24 +0100
committerRob Crittenden <rcritten@redhat.com>2010-01-11 13:28:05 -0500
commit74a538416999d84f7d3bd6cca4ab3655481ef848 (patch)
treee72e11e7092996946a439b6fd95cedf61e2fe2ba /ipalib/plugins/hbac.py
parentb8016807ebb95b97f0a4631574be484371f4dcd0 (diff)
downloadfreeipa-74a538416999d84f7d3bd6cca4ab3655481ef848.tar.gz
freeipa-74a538416999d84f7d3bd6cca4ab3655481ef848.tar.xz
freeipa-74a538416999d84f7d3bd6cca4ab3655481ef848.zip
Add --all to LDAPCreate and make LDAP commands always display default attributes.
Diffstat (limited to 'ipalib/plugins/hbac.py')
-rw-r--r--ipalib/plugins/hbac.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/hbac.py b/ipalib/plugins/hbac.py
index 6dc13f6d..ac944591 100644
--- a/ipalib/plugins/hbac.py
+++ b/ipalib/plugins/hbac.py
@@ -124,7 +124,7 @@ class hbac_add(LDAPCreate):
"""
Create new HBAC rule.
"""
- def pre_callback(self, ldap, dn, entry_attrs, *keys, **options):
+ def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
if not dn.startswith('cn='):
msg = 'HBAC rule with name "%s" already exists' % keys[-1]
raise errors.DuplicateEntry(message=msg)