added skipped to oneline

This commit is contained in:
Brian Coca 2015-07-13 15:53:55 -04:00
parent 373830b5df
commit c4b6d91275

View file

@ -55,3 +55,6 @@ class CallbackModule(CallbackBase):
def v2_runner_on_unreachable(self, result): def v2_runner_on_unreachable(self, result):
self._display.display("%s | UNREACHABLE!" % result._host.get_name(), color='yellow') self._display.display("%s | UNREACHABLE!" % result._host.get_name(), color='yellow')
def v2_runner_on_skipped(self, result):
self._display.display("%s | SKIPPED" % (result._host.get_name()), color='cyan')