-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdebug_override.py
29 lines (23 loc) · 961 Bytes
/
debug_override.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from ansible.plugins.callback import CallbackBase
from ansible import constants as C
class CallbackModule(CallbackBase):
"""
This callback module overrides the no_log feature for debugging purposes.
"""
CALLBACK_VERSION = 2.0
CALLBACK_TYPE = 'stdout'
CALLBACK_NAME = 'debug_override'
def v2_runner_on_ok(self, result):
# Check if no_log is enabled, and if so, force it to log the output.
if result._result.get('censored'):
self._display.display("Override no_log: %s" % result._result, color=C.COLOR_DEBUG)
else:
self._display.display("Normal log: %s" % result._result, color=C.COLOR_OK)
def v2_runner_on_failed(self, result, ignore_errors=False):
if 'msg' in result._result:
self._display.display("Failure due to: %s" % result._result['msg'], color=C.COLOR_ERROR)
"""
[defaults]
stdout_callback = debug_override
callback_plugins = ./callback_plugins/
"""