mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
c948c65bcd
commit
5065103017
1 changed files with 2 additions and 1 deletions
|
@ -390,7 +390,8 @@ class PlayBook(object):
|
|||
|
||||
# now with that data, handle contentional variable file imports!
|
||||
|
||||
all_hosts = self.inventory.list_hosts(play.hosts)
|
||||
all_hosts = [ h for h in self.inventory.list_hosts(play.hosts)
|
||||
if not (h in self.stats.failures or h in self.stats.dark) ]
|
||||
play.update_vars_files(all_hosts)
|
||||
|
||||
serialized_batch = []
|
||||
|
|
Loading…
Reference in a new issue