Add STDOUT lines in response of "synchronize" module
This commit is contained in:
parent
33b440ac9f
commit
7cd21a47ef
1 changed files with 5 additions and 2 deletions
|
@ -304,8 +304,11 @@ def main():
|
|||
return module.fail_json(msg=err, rc=rc, cmd=cmdstr)
|
||||
else:
|
||||
changed = changed_marker in out
|
||||
return module.exit_json(changed=changed, msg=out.replace(changed_marker,''),
|
||||
rc=rc, cmd=cmdstr)
|
||||
out_clean=out.replace(changed_marker,'')
|
||||
out_lines=out_clean.split('\n')
|
||||
while '' in out_lines: out_lines.remove('')
|
||||
return module.exit_json(changed=changed, msg=out_clean,
|
||||
rc=rc, cmd=cmdstr, stdout_lines=out_lines)
|
||||
|
||||
# import module snippets
|
||||
from ansible.module_utils.basic import *
|
||||
|
|
Loading…
Reference in a new issue