mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Merge pull request #9997 from shawnsi/stdout_lines
Add stdout_lines to results when using with_items
This commit is contained in:
@@ -817,6 +817,10 @@ class Runner(object):
|
|||||||
port,
|
port,
|
||||||
complex_args=complex_args
|
complex_args=complex_args
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if 'stdout' in result.result and 'stdout_lines' not in result.result:
|
||||||
|
result.result['stdout_lines'] = result.result['stdout'].splitlines()
|
||||||
|
|
||||||
results.append(result.result)
|
results.append(result.result)
|
||||||
if result.comm_ok == False:
|
if result.comm_ok == False:
|
||||||
all_comm_ok = False
|
all_comm_ok = False
|
||||||
|
|||||||
Reference in New Issue
Block a user