From 8f44811a9570e2a0dbc821b6ca48748a5d6eace7 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 28 Jan 2013 12:02:48 -0500 Subject: Remove search_s and search_ext_s from IPAdmin Part of the work for: https://fedorahosted.org/freeipa/ticket/2660 --- ipaserver/ipaldap.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'ipaserver/ipaldap.py') 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. -- cgit