mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixes return data structure (#22830)
The return was being re-written instead of updated so warnings were lost. This patch now updates the result instead of replacing it.
This commit is contained in:
parent
e7fd38af78
commit
d6787632c9
1 changed files with 2 additions and 2 deletions
|
@ -218,11 +218,11 @@ def main():
|
|||
module.fail_json(msg=msg, failed_conditions=failed_conditions)
|
||||
|
||||
|
||||
result = {
|
||||
result.update({
|
||||
'changed': False,
|
||||
'stdout': responses,
|
||||
'stdout_lines': list(to_lines(responses))
|
||||
}
|
||||
})
|
||||
|
||||
module.exit_json(**result)
|
||||
|
||||
|
|
Loading…
Reference in a new issue