diff options
author | Martin Babinsky <mbabinsk@redhat.com> | 2016-07-14 09:31:22 +0200 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-07-19 14:11:39 +0200 |
commit | b144bf527db76573590255d4ac80e9dfd813ba3d (patch) | |
tree | 16e9d3484c3a488fa18143a8f52d8e8a51325b19 | |
parent | 6a072f3c5c114747c190d0c309a8d53dd8e46394 (diff) | |
download | freeipa-b144bf527db76573590255d4ac80e9dfd813ba3d.tar.gz freeipa-b144bf527db76573590255d4ac80e9dfd813ba3d.tar.xz freeipa-b144bf527db76573590255d4ac80e9dfd813ba3d.zip |
Use server API in com.redhat.idm.trust-fetch-domains oddjob helper
https://fedorahosted.org/freeipa/ticket/6082
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
-rwxr-xr-x | install/oddjob/com.redhat.idm.trust-fetch-domains | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/oddjob/com.redhat.idm.trust-fetch-domains b/install/oddjob/com.redhat.idm.trust-fetch-domains index a6b87cde9..7c948fd53 100755 --- a/install/oddjob/com.redhat.idm.trust-fetch-domains +++ b/install/oddjob/com.redhat.idm.trust-fetch-domains @@ -76,7 +76,7 @@ env._bootstrap(debug=options.debug, log=None) env._finalize_core(**dict(DEFAULT_CONFIG)) # Initialize the API with the proper debug level -api.bootstrap(debug=env.debug, log=None) +api.bootstrap(in_server=True, debug=env.debug, log=None) api.finalize() # Only import trust plugin after api is initialized or internal imports |