Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For actionable cb plugin also hide ok for itemized results #14977

Merged
merged 1 commit into from
Mar 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions lib/ansible/plugins/callback/actionable.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ def v2_runner_on_ok(self, result):
if result._result.get('changed', False):
self.display_task_banner()
self.super_ref.v2_runner_on_ok(result)
else:
pass

def v2_runner_on_unreachable(self, result):
self.display_task_banner()
Expand All @@ -64,8 +62,9 @@ def v2_playbook_on_include(self, included_file):
pass

def v2_runner_item_on_ok(self, result):
self.display_task_banner()
self.super_ref.v2_runner_item_on_ok(result)
if result._result.get('changed', False):
self.display_task_banner()
self.super_ref.v2_runner_item_on_ok(result)

def v2_runner_item_on_skipped(self, result):
pass
Expand Down