From 7a33c14782ebc944e812c52d94b7d3d33395febe Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 7 Nov 2016 15:40:39 -0500 Subject: [PATCH] added 'friendly' name to fact gathering fixes #18198 --- 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 75b8362db7c..f8f3bec9972 100644 --- a/lib/ansible/executor/play_iterator.py +++ b/lib/ansible/executor/play_iterator.py @@ -171,6 +171,7 @@ class PlayIterator: setup_block = Block(play=self._play) setup_task = Task(block=setup_block) setup_task.action = 'setup' + setup_task.name = 'Gathering Facts' setup_task.tags = ['always'] setup_task.args = { 'gather_subset': gather_subset,