mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1616 from dagwieers/skip-register
Do not register variable if host has been skipped
This commit is contained in:
commit
d500398e76
1 changed files with 3 additions and 0 deletions
|
@ -301,6 +301,9 @@ 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():
|
||||||
|
# Skip register variable if host is skipped
|
||||||
|
if result.get('skipped', False):
|
||||||
|
continue
|
||||||
facts = result.get('ansible_facts', {})
|
facts = result.get('ansible_facts', {})
|
||||||
self.SETUP_CACHE[host].update(facts)
|
self.SETUP_CACHE[host].update(facts)
|
||||||
if task.register:
|
if task.register:
|
||||||
|
|
Loading…
Reference in a new issue