[2.7] icinga2_host: fix use_proxy option (#50865)

* fix use_proxy option in icinga2_host (#47671)


(cherry picked from commit e7b91f331b)

* Move changelog fragment to changelogs/fragments/.
pull/50899/head
Felix Fontein 6 years ago committed by Toshio Kuratomi
parent 12ee5c9f6e
commit 11c1580b23

@ -0,0 +1,2 @@
bugfixes:
- icinga2_host - fixed the issue with not working ``use_proxy`` option of the module.

@ -134,13 +134,16 @@ from ansible.module_utils.urls import fetch_url, url_argument_spec
class icinga2_api:
module = None
def __init__(self, module):
self.module = module
def call_url(self, path, data='', method='GET'):
headers = {
'Accept': 'application/json',
'X-HTTP-Method-Override': method,
}
url = self.module.params.get("url") + "/" + path
rsp, info = fetch_url(module=self.module, url=url, data=data, headers=headers, method=method)
rsp, info = fetch_url(module=self.module, url=url, data=data, headers=headers, method=method, use_proxy=self.module.params['use_proxy'])
body = ''
if rsp:
body = json.loads(rsp.read())
@ -248,8 +251,7 @@ def main():
variables = module.params["variables"]
try:
icinga = icinga2_api()
icinga.module = module
icinga = icinga2_api(module=module)
icinga.check_connection()
except Exception as e:
module.fail_json(msg="unable to connect to Icinga. Exception message: %s" % (e))

Loading…
Cancel
Save