|
|
@ -304,8 +304,11 @@ def main():
|
|
|
|
return module.fail_json(msg=err, rc=rc, cmd=cmdstr)
|
|
|
|
return module.fail_json(msg=err, rc=rc, cmd=cmdstr)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
changed = changed_marker in out
|
|
|
|
changed = changed_marker in out
|
|
|
|
return module.exit_json(changed=changed, msg=out.replace(changed_marker,''),
|
|
|
|
out_clean=out.replace(changed_marker,'')
|
|
|
|
rc=rc, cmd=cmdstr)
|
|
|
|
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
|
|
|
|
# import module snippets
|
|
|
|
from ansible.module_utils.basic import *
|
|
|
|
from ansible.module_utils.basic import *
|
|
|
|