Merge "Show names of tasks when showing results"

This commit is contained in:
Zuul 2017-09-30 18:52:21 +00:00 committed by Gerrit Code Review
commit 5a19c42ed4
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@ from cliff.show import ShowOne
LIST_FIELDS = (
Field('ID'),
Field('Name', 'task.name'),
Field('Host', 'host.name'),
Field('Action', 'task.action'),
Field('Status', 'derived_status'),
@ -34,6 +35,7 @@ LIST_FIELDS = (
SHOW_FIELDS = (
Field('ID'),
Field('Name', 'task.name'),
Field('Playbook ID', 'task.playbook.id'),
Field('Playbook Path', 'task.playbook.path'),
Field('Play ID', 'task.play.id'),