From 84f8241ff88eb0e2ab7355811f8e846da5d35031 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Tue, 2 Feb 2016 16:30:58 -0500 Subject: [PATCH] tag the setup task with always fixes #14228 --- lib/ansible/executor/play_iterator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/executor/play_iterator.py b/lib/ansible/executor/play_iterator.py index e46a8d15077..8c6fc294939 100644 --- a/lib/ansible/executor/play_iterator.py +++ b/lib/ansible/executor/play_iterator.py @@ -137,6 +137,7 @@ class PlayIterator: setup_block = Block(play=self._play) setup_task = Task(block=setup_block) setup_task.action = 'setup' + setup_task.tags = ['always'] setup_task.args = {} setup_task.set_loader(self._play._loader) setup_block.block = [setup_task]