2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Dump stderr to client if ansible had an utterly disastrous condition

This commit is contained in:
Jarrod Johnson 2024-03-06 08:45:23 -05:00
parent 75db6da621
commit 2f8dfac9bc

View File

@ -63,6 +63,9 @@ class PlayRunner(object):
else:
textout += result['state'] + '\n'
textout += '\n'
if self.stderr:
textout += "ERRORS **********************************\n"
textout += self.stderr
return textout
def dump_json(self):