Surface certain messages at the end of playbook execution

Fixes #106 (Github Issue).
This commit is contained in:
Slavi Pantaleev
2020-09-01 13:12:11 +03:00
parent b117dc0cb7
commit a456e3a9e7
3 changed files with 20 additions and 3 deletions

View File

@ -0,0 +1,6 @@
# Ansible outputs the message in the `item=` field.
# It's unnecessary to output it again in the actual message, so we don't.
- debug:
msg: ""
with_items: "{{ matrix_playbook_runtime_results }}"
when: "matrix_playbook_runtime_results is defined and matrix_playbook_runtime_results|length > 0"

View File

@ -7,3 +7,7 @@
when: run_stop|bool
tags:
- stop
- import_tasks: "{{ role_path }}/tasks/dump_runtime_results.yml"
tags:
- always