From 32cf79c0443d0e3a39eb85ec652c77ac72300a68 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 19 Mar 2018 10:16:42 -0400 Subject: [PATCH] show changed in online --- lib/ansible/plugins/callback/oneline.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lib/ansible/plugins/callback/oneline.py b/lib/ansible/plugins/callback/oneline.py index 119b8273edd..b89f8b6ed59 100644 --- a/lib/ansible/plugins/callback/oneline.py +++ b/lib/ansible/plugins/callback/oneline.py @@ -56,11 +56,19 @@ class CallbackModule(CallbackBase): color=C.COLOR_ERROR) def v2_runner_on_ok(self, result): + + if result._result.get('changed', False): + color = C.COLOR_CHANGED + state = 'CHANGED' + else: + color = C.COLOR_OK + state = 'SUCCESS' + if result._task.action in C.MODULE_NO_JSON: - self._display.display(self._command_generic_msg(result._host.get_name(), result._result, 'SUCCESS'), color=C.COLOR_OK) + self._display.display(self._command_generic_msg(result._host.get_name(), result._result, state), color=color) else: - self._display.display("%s | SUCCESS => %s" % (result._host.get_name(), self._dump_results(result._result, indent=0).replace('\n', '')), - color=C.COLOR_OK) + self._display.display("%s | %s => %s" % (result._host.get_name(), state, self._dump_results(result._result, indent=0).replace('\n', '')), + color=color) def v2_runner_on_unreachable(self, result): self._display.display("%s | UNREACHABLE!: %s" % (result._host.get_name(), result._result.get('msg', '')), color=C.COLOR_UNREACHABLE)