Add STDOUT lines in response of "synchronize" module

This commit is contained in:
Andrea.Mandolo 2014-03-10 17:27:05 +01:00 committed by Michael DeHaan
parent f9ec53cdef
commit c039dbe300

View file

@ -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 *