mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix a glitch with daisy chain logic
This commit is contained in:
parent
183330a9fa
commit
9b8793e42e
1 changed files with 3 additions and 3 deletions
|
@ -439,8 +439,8 @@ class Runner(object):
|
||||||
xfered = self._transfer_str(conn, tmp, 'source', resultant)
|
xfered = self._transfer_str(conn, tmp, 'source', resultant)
|
||||||
|
|
||||||
# run the copy module, queue the file module
|
# run the copy module, queue the file module
|
||||||
args = "src=%s dest=%s" % (xfered, dest)
|
self.module_args = "src=%s dest=%s" % (xfered, dest)
|
||||||
return self._execute_module(conn, tmp, 'copy', args, inject=inject).daisychain('file')
|
return self._execute_module(conn, tmp, 'copy', self.module_args, inject=inject).daisychain('file')
|
||||||
|
|
||||||
# *****************************************************
|
# *****************************************************
|
||||||
|
|
||||||
|
@ -592,7 +592,7 @@ class Runner(object):
|
||||||
result.result['changed'] = changed
|
result.result['changed'] = changed
|
||||||
del result.result['daisychain']
|
del result.result['daisychain']
|
||||||
|
|
||||||
self._delete_remote_files(conn, tmp)
|
#self._delete_remote_files(conn, tmp)
|
||||||
conn.close()
|
conn.close()
|
||||||
|
|
||||||
if not result.comm_ok:
|
if not result.comm_ok:
|
||||||
|
|
Loading…
Reference in a new issue