mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Check for ansible_facts in results for with_ tasks
that loop over a lookup plugin. Fixes #3704 and #3735
This commit is contained in:
parent
40e60c947d
commit
1a4e6e415e
1 changed files with 9 additions and 2 deletions
|
@ -361,8 +361,15 @@ class PlayBook(object):
|
||||||
|
|
||||||
# add facts to the global setup cache
|
# add facts to the global setup cache
|
||||||
for host, result in contacted.iteritems():
|
for host, result in contacted.iteritems():
|
||||||
facts = result.get('ansible_facts', {})
|
if 'results' in result:
|
||||||
self.SETUP_CACHE[host].update(facts)
|
# task ran with_ lookup plugin, so facts are encapsulated in
|
||||||
|
# multiple list items in the results key
|
||||||
|
for res in result['results']:
|
||||||
|
facts = res.get('ansible_facts', {})
|
||||||
|
self.SETUP_CACHE[host].update(facts)
|
||||||
|
else:
|
||||||
|
facts = result.get('ansible_facts', {})
|
||||||
|
self.SETUP_CACHE[host].update(facts)
|
||||||
# extra vars need to always trump - so update again following the facts
|
# extra vars need to always trump - so update again following the facts
|
||||||
self.SETUP_CACHE[host].update(self.extra_vars)
|
self.SETUP_CACHE[host].update(self.extra_vars)
|
||||||
if task.register:
|
if task.register:
|
||||||
|
|
Loading…
Reference in a new issue