mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
committed by
John R Barker
parent
2f33c1a1a1
commit
5553b20828
@@ -38,9 +38,9 @@ class CallbackModule(CallbackBase):
|
||||
''' output the result of a command run '''
|
||||
|
||||
buf = "%s | %s | rc=%s >>\n" % (host, caption, result.get('rc', -1))
|
||||
buf += result.get('stdout','')
|
||||
buf += result.get('stderr','')
|
||||
buf += result.get('msg','')
|
||||
buf += result.get('stdout', '')
|
||||
buf += result.get('stderr', '')
|
||||
buf += result.get('msg', '')
|
||||
|
||||
return buf + "\n"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user