Fixes #6077 decode escaped newline characters in content for the copy module

pull/6302/head
James Tanner 11 years ago
parent b41d8106ff
commit 4e8ed92130

@ -54,6 +54,12 @@ class ActionModule(object):
raw = utils.boolean(options.get('raw', 'no'))
force = utils.boolean(options.get('force', 'yes'))
# content with newlines is going to be escaped to safely load in yaml
# now we need to unescape it so that the newlines are evaluated properly
# when writing the file to disk
if content:
content = content.decode('unicode-escape')
if (source is None and content is None and not 'first_available_file' in inject) or dest is None:
result=dict(failed=True, msg="src (or content) and dest are required")
return ReturnData(conn=conn, result=result)

Loading…
Cancel
Save