1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixup args being passed into file from copy, tweak preservation of changed attribute.

This commit is contained in:
Michael DeHaan 2012-07-23 21:55:41 -04:00
parent 2cda36f7dc
commit dd6399b5ae

View file

@ -317,8 +317,8 @@ class Runner(object):
conn.put_file(source, tmp_src)
# run the copy module
args = "src=%s dest=%s" % (tmp_src, dest)
return self._execute_module(conn, tmp, 'copy', args, inject=inject).daisychain('file')
self.module_args = "src=%s dest=%s" % (tmp_src, dest)
return self._execute_module(conn, tmp, 'copy', self.module_args, inject=inject).daisychain('file')
else:
# no need to transfer the file, already correct md5
@ -571,7 +571,9 @@ class Runner(object):
if 'daisychain_args' in result.result:
self.module_args = result.result['daisychain_args']
result2 = self._executor_internal_inner(host, inject, port)
changed = result.result.get('changed',False) or result2.result.get('changed',False)
changed = False
if result.result.get('changed',False) or result2.result.get('changed',False):
changed = True
result.result.update(result2.result)
result.result['changed'] = changed
del result.result['daisychain']