Make 'assemble' use the new daisychain logic

pull/4420/head
Michael DeHaan 2012-07-20 09:17:42 -04:00
parent 6fb74ae2f9
commit db1a4d8fac
1 changed files with 2 additions and 3 deletions

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
# *****************************************************