From db0168f7afdac55eb7e0488cdc05e7a77a25672d Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Tue, 27 Jan 2009 16:28:50 -0700 Subject: Started reworking CLI class into cli plugin --- ipaserver/plugins/b_ldap.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ipaserver/plugins/b_ldap.py') diff --git a/ipaserver/plugins/b_ldap.py b/ipaserver/plugins/b_ldap.py index 54766bbb..35087039 100644 --- a/ipaserver/plugins/b_ldap.py +++ b/ipaserver/plugins/b_ldap.py @@ -41,6 +41,12 @@ class ldap(CrudBackend): self.dn = _ldap.dn super(ldap, self).__init__() + def create_connection(self, ccache=None): + return 'The LDAP connection.' + + def destroy_connection(self): + pass + def make_user_dn(self, uid): """ Construct user dn from uid. -- cgit