Commit fe2cc6dd by Brian Coca

Merge pull request #10658 from erinn/freeipa_compat

Changes to api in FreeIPA > 4.0 compatibility fix.
parents cd852225 a3b35ed1
......@@ -13,7 +13,11 @@ def initialize():
api.bootstrap(context='cli')
api.finalize()
api.Backend.xmlclient.connect()
try:
api.Backend.rpcclient.connect()
except AttributeError:
#FreeIPA < 4.0 compatibility
api.Backend.xmlclient.connect()
return api
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment