diff options
author | Pavel Zuna <pzuna@redhat.com> | 2010-11-23 09:02:54 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-11-23 21:29:08 -0500 |
commit | 5060fdfade63f299bf3ad15c16a1aff06135b80f (patch) | |
tree | 4c6d5c7b5968c21e9af72423c25fe4a5e9b8a933 /ipalib/plugins/host.py | |
parent | 6d51a48af8afc52a0bf3f9437b2de1c2b8c1c0d4 (diff) | |
download | freeipa-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/host.py')
-rw-r--r-- | ipalib/plugins/host.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/host.py b/ipalib/plugins/host.py index 9d3a2a9a..b3caf185 100644 --- a/ipalib/plugins/host.py +++ b/ipalib/plugins/host.py @@ -556,11 +556,11 @@ class host_find(LDAPSearch): ) member_attributes = ['managedby'] - def pre_callback(self, ldap, filter, attrs_list, base_dn, *args, **options): + def pre_callback(self, ldap, filter, attrs_list, base_dn, scope, *args, **options): if 'locality' in attrs_list: attrs_list.remove('locality') attrs_list.append('l') - return filter.replace('locality', 'l') + return (filter.replace('locality', 'l'), base_dn, scope) def post_callback(self, ldap, entries, truncated, *args, **options): for entry in entries: |