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

Make 'assemble' use the new daisychain logic

This commit is contained in:
Michael DeHaan 2012-07-20 09:17:42 -04:00
parent 6fb74ae2f9
commit db1a4d8fac

View file

@ -495,9 +495,8 @@ class Runner(object):
exec_rc = self._execute_module(conn, tmp, module, self.module_args, inject=inject)
if exec_rc.is_successful():
return self._chain_file_module(conn, tmp, exec_rc, options, inject=inject)
else:
return exec_rc
exec_rc.result['daisychain'] = 'file'
return exec_rc
# *****************************************************