Skip to content
Snippets Groups Projects
Commit 6910d99f authored by Thomas Woerner's avatar Thomas Woerner
Browse files

ipaserver: Fix NameError: name 'api_Backend_ldap2_connect' is not defined

ipaserver_setup_adtrust was using api_Backend_ldap2_connect instead of
api_Backend_ldap2 with attribute connect set to True.

Fixes issue #39
parent cd96c8a0
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,7 @@ def main(): ...@@ -73,7 +73,7 @@ def main():
fstore = sysrestore.FileStore(paths.SYSRESTORE) fstore = sysrestore.FileStore(paths.SYSRESTORE)
sstore = sysrestore.StateFile(paths.SYSRESTORE) sstore = sysrestore.StateFile(paths.SYSRESTORE)
api_Backend_ldap2_connect(options.host_name, options.setup_ca) api_Backend_ldap2(options.host_name, options.setup_ca, connect=True)
# setup ds ###################################################### # setup ds ######################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment