diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2009-01-27 16:28:50 -0700 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-02-03 15:29:03 -0500 |
commit | db0168f7afdac55eb7e0488cdc05e7a77a25672d (patch) | |
tree | 5413f862a79ae8c8589f1bb1d00feb565309760d /ipaserver/plugins | |
parent | 9efda29d60ae83d17bce793e0a23e3ec43c67f80 (diff) | |
download | freeipa-db0168f7afdac55eb7e0488cdc05e7a77a25672d.tar.gz freeipa-db0168f7afdac55eb7e0488cdc05e7a77a25672d.tar.xz freeipa-db0168f7afdac55eb7e0488cdc05e7a77a25672d.zip |
Started reworking CLI class into cli plugin
Diffstat (limited to 'ipaserver/plugins')
-rw-r--r-- | ipaserver/plugins/b_ldap.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ipaserver/plugins/b_ldap.py b/ipaserver/plugins/b_ldap.py index 54766bbb7..350870392 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. |