mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Merge pull request #10885 from bcoca/galaxy_v2
revamped base CLI and moved galaxy to it's own classes/api
This commit is contained in:
@@ -37,6 +37,8 @@ class CallbackModule(CallbackBase):
|
||||
pass
|
||||
|
||||
def v2_runner_on_failed(self, result, ignore_errors=False):
|
||||
if 'exception' in result._result and self._display.verbosity < 3:
|
||||
del result._result['exception']
|
||||
self._display.display("fatal: [%s]: FAILED! => %s" % (result._host.get_name(), json.dumps(result._result, ensure_ascii=False)), color='red')
|
||||
|
||||
def v2_runner_on_ok(self, result):
|
||||
|
||||
@@ -38,6 +38,8 @@ class CallbackModule(CallbackBase):
|
||||
pass
|
||||
|
||||
def v2_runner_on_failed(self, result, ignore_errors=False):
|
||||
if 'exception' in result._result and self._display.verbosity < 3:
|
||||
del result._result['exception']
|
||||
self._display.display("%s | FAILED! => %s" % (result._host.get_name(), result._result), color='red')
|
||||
|
||||
def v2_runner_on_ok(self, result):
|
||||
|
||||
Reference in New Issue
Block a user