From cf3e368d150c8b47b5eecddb492ec51651d002cb Mon Sep 17 00:00:00 2001 From: Stephen Fromm Date: Sun, 30 Sep 2012 08:54:20 -0700 Subject: [PATCH] Add message reporting skipped action in cli callback --- lib/ansible/callbacks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/callbacks.py b/lib/ansible/callbacks.py index cbde540309..8feed2907f 100644 --- a/lib/ansible/callbacks.py +++ b/lib/ansible/callbacks.py @@ -237,6 +237,7 @@ class CliRunnerCallbacks(DefaultRunnerCallbacks): super(CliRunnerCallbacks, self).on_unreachable(host, res) def on_skipped(self, host, item=None): + print "%s | skipped" % (host) super(CliRunnerCallbacks, self).on_skipped(host, item) def on_error(self, host, err):