mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix py3 issue in nagios_livestatus inv script. (#21687)
* Fix py3 issue in nagios_livestatus inv script. * Fix PEP 8 issues.
This commit is contained in:
parent
5d0805b25a
commit
3f91e3531a
1 changed files with 8 additions and 7 deletions
|
@ -53,7 +53,8 @@ class NagiosLivestatusInventory(object):
|
|||
config = configparser.SafeConfigParser()
|
||||
config.read(os.path.dirname(os.path.realpath(__file__)) + '/nagios_livestatus.ini')
|
||||
for section in config.sections():
|
||||
if not config.has_option(section, 'livestatus_uri'): continue
|
||||
if not config.has_option(section, 'livestatus_uri'):
|
||||
continue
|
||||
|
||||
# If fields_to_retrieve is not set, using default fields
|
||||
fields_to_retrieve = self.default_fields_to_retrieve
|
||||
|
@ -63,12 +64,12 @@ class NagiosLivestatusInventory(object):
|
|||
|
||||
# default section values
|
||||
section_values = {
|
||||
'var_prefix' : 'livestatus_',
|
||||
'host_filter': None,
|
||||
'host_field' : 'name',
|
||||
'group_field': 'groups'
|
||||
'var_prefix': 'livestatus_',
|
||||
'host_filter': None,
|
||||
'host_field': 'name',
|
||||
'group_field': 'groups'
|
||||
}
|
||||
for key,value in section_values.iteritems():
|
||||
for key, value in section_values.items():
|
||||
if config.has_option(section, key):
|
||||
section_values[key] = config.get(section, key).strip()
|
||||
|
||||
|
@ -93,7 +94,7 @@ class NagiosLivestatusInventory(object):
|
|||
# Updating backend_definition with current value
|
||||
backend_definition['name'] = section
|
||||
backend_definition['fields'] = fields_to_retrieve
|
||||
for key, value in section_values.iteritems():
|
||||
for key, value in section_values.items():
|
||||
backend_definition[key] = value
|
||||
|
||||
self.backends.append(backend_definition)
|
||||
|
|
Loading…
Reference in a new issue