summaryrefslogtreecommitdiffstats
path: root/ipaserver/ipaldap.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-01-28 12:02:48 -0500
committerMartin Kosek <mkosek@redhat.com>2013-03-01 16:59:46 +0100
commit8f44811a9570e2a0dbc821b6ca48748a5d6eace7 (patch)
treeeac02c7f1ab13894ff2e47b4757534923e3fb6a6 /ipaserver/ipaldap.py
parentd7bf70902b4285c40e33e426b9e16fbbbdbf8f8c (diff)
downloadfreeipa.git-8f44811a9570e2a0dbc821b6ca48748a5d6eace7.tar.gz
freeipa.git-8f44811a9570e2a0dbc821b6ca48748a5d6eace7.tar.xz
freeipa.git-8f44811a9570e2a0dbc821b6ca48748a5d6eace7.zip
Remove search_s and search_ext_s from IPAdmin
Part of the work for: https://fedorahosted.org/freeipa/ticket/2660
Diffstat (limited to 'ipaserver/ipaldap.py')
-rw-r--r--ipaserver/ipaldap.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/ipaserver/ipaldap.py b/ipaserver/ipaldap.py
index 1f943ff2..9e1266bf 100644
--- a/ipaserver/ipaldap.py
+++ b/ipaserver/ipaldap.py
@@ -1704,10 +1704,6 @@ class IPAdmin(LDAPClient):
# FIXME: for backwards compatibility only
return self.conn.unbind_s(*args, **kwargs)
- def search_s(self, *args, **kwargs):
- # FIXME: for backwards compatibility only
- return self.conn.search_s(*args, **kwargs)
-
def set_option(self, *args, **kwargs):
# FIXME: for backwards compatibility only
return self.conn.set_option(*args, **kwargs)
@@ -1732,10 +1728,6 @@ class IPAdmin(LDAPClient):
# FIXME: for backwards compatibility only
return self.conn.start_tls_s(*args, **kwargs)
- def search_ext_s(self, *args, **kwargs):
- # FIXME: for backwards compatibility only
- return self.conn.search_ext_s(*args, **kwargs)
-
# FIXME: Some installer tools depend on ipaldap importing plugins.ldap2.
# The proper plugins should rather be imported explicitly.