From 564a212b3c6df0af099d97dbaee29a2e26155e89 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Fri, 28 Sep 2012 16:57:35 +0200 Subject: [PATCH] Only gather facts once per node per playbook run Unless gather_facts: True is on the play --- lib/ansible/playbook/__init__.py | 6 +++++- lib/ansible/playbook/play.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/ansible/playbook/__init__.py b/lib/ansible/playbook/__init__.py index f3bb5044953..ed8739f7975 100644 --- a/lib/ansible/playbook/__init__.py +++ b/lib/ansible/playbook/__init__.py @@ -314,8 +314,12 @@ class PlayBook(object): host_list = [ h for h in self.inventory.list_hosts(play.hosts) if not (h in self.stats.failures or h in self.stats.dark) ] - if not play.gather_facts: + if play.gather_facts is False: return {} + elif play.gather_facts is None: + host_list = [h for h in host_list if h not in self.SETUP_CACHE] + if len(host_list) == 0: + return {} self.callbacks.on_setup() self.inventory.restrict_to(host_list) diff --git a/lib/ansible/playbook/play.py b/lib/ansible/playbook/play.py index 261c8c6e45a..4290d2e8bb9 100644 --- a/lib/ansible/playbook/play.py +++ b/lib/ansible/playbook/play.py @@ -75,7 +75,7 @@ class Play(object): self.sudo_user = utils.template(basedir, ds.get('sudo_user', self.playbook.sudo_user), playbook.extra_vars) self.transport = ds.get('connection', self.playbook.transport) self.tags = ds.get('tags', None) - self.gather_facts = ds.get('gather_facts', True) + self.gather_facts = ds.get('gather_facts', None) self.serial = ds.get('serial', 0) self._update_vars_files_for_host(None)