summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/user.py
diff options
context:
space:
mode:
authorPavel Zuna <pzuna@redhat.com>2010-11-23 09:02:54 -0500
committerAdam Young <ayoung@redhat.com>2010-11-23 21:29:08 -0500
commit5060fdfade63f299bf3ad15c16a1aff06135b80f (patch)
tree4c6d5c7b5968c21e9af72423c25fe4a5e9b8a933 /ipalib/plugins/user.py
parent6d51a48af8afc52a0bf3f9437b2de1c2b8c1c0d4 (diff)
downloadfreeipa-5060fdfade63f299bf3ad15c16a1aff06135b80f.tar.gz
freeipa-5060fdfade63f299bf3ad15c16a1aff06135b80f.tar.xz
freeipa-5060fdfade63f299bf3ad15c16a1aff06135b80f.zip
Change signature of LDAPSearch.pre_callback.
Add the opportunity to change base DN and scope in the callback.
Diffstat (limited to 'ipalib/plugins/user.py')
-rw-r--r--ipalib/plugins/user.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/user.py b/ipalib/plugins/user.py
index b34ba99f9..5b6e03b66 100644
--- a/ipalib/plugins/user.py
+++ b/ipalib/plugins/user.py
@@ -251,11 +251,11 @@ class user_find(LDAPSearch):
doc=_('Display user record for current Kerberos principal'),
),
)
- def pre_callback(self, ldap, filter, entry_attrs, attrs_list, *keys, **options):
+ def pre_callback(self, ldap, filter, attrs_list, base_dn, scope, *keys, **options):
if options.get('whoami'):
return "(&(objectclass=posixaccount)(krbprincipalname=%s))"%\
getattr(context, 'principal')
- return filter
+ return (filter, base_dn, scope)
def post_callback(self, ldap, entries, truncated, *args, **options):
for entry in entries: