Add message reporting skipped action in cli callback

This commit is contained in:
Stephen Fromm 2012-09-30 08:54:20 -07:00
commit cf3e368d15

View file

@ -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):