fix error when cache is disabled (#2518)
parent
ea200c9d8c
commit
448b8cbcda
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- nmap inventory plugin - fix local variable error when cache is disabled (https://github.com/ansible-collections/community.general/issues/2512).
|
|
@ -130,7 +130,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
||||||
# This occurs if the cache_key is not in the cache or if the cache_key expired, so the cache needs to be updated
|
# This occurs if the cache_key is not in the cache or if the cache_key expired, so the cache needs to be updated
|
||||||
cache_needs_update = True
|
cache_needs_update = True
|
||||||
|
|
||||||
if cache_needs_update:
|
if not user_cache_setting or cache_needs_update:
|
||||||
# setup command
|
# setup command
|
||||||
cmd = [self._nmap]
|
cmd = [self._nmap]
|
||||||
if not self._options['ports']:
|
if not self._options['ports']:
|
||||||
|
@ -207,6 +207,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise AnsibleParserError("failed to parse %s: %s " % (to_native(path), to_native(e)))
|
raise AnsibleParserError("failed to parse %s: %s " % (to_native(path), to_native(e)))
|
||||||
|
|
||||||
|
if cache_needs_update:
|
||||||
self._cache[cache_key] = results
|
self._cache[cache_key] = results
|
||||||
|
|
||||||
self._populate(results)
|
self._populate(results)
|
||||||
|
|
Loading…
Reference in New Issue