Commit a3d90e8a by Michael DeHaan

Merge pull request #5498 from j2sol/exit_setup_early

Return early from setup step when possible
parents 227e8e31 35328ed5
......@@ -433,11 +433,11 @@ class PlayBook(object):
def _do_setup_step(self, play):
''' get facts from the remote system '''
host_list = self._list_available_hosts(play.hosts)
if play.gather_facts is False:
return {}
elif play.gather_facts is None:
host_list = self._list_available_hosts(play.hosts)
if play.gather_facts is None:
host_list = [h for h in host_list if h not in self.SETUP_CACHE or 'module_setup' not in self.SETUP_CACHE[h]]
if len(host_list) == 0:
return {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment