Commit ca4c5a14 by James Cammarata

Fixing bug related to dynamic includes + with* loops

parent d0cfcdbc
......@@ -209,6 +209,7 @@ class StrategyModule(StrategyBase):
results = self._wait_on_pending_results(iterator)
host_results.extend(results)
# FIXME: this needs to be somewhere else
class IncludedFile:
def __init__(self, filename, args, task):
self._filename = filename
......@@ -239,6 +240,8 @@ class StrategyModule(StrategyBase):
include_file = self._loader.path_dwim(res._task.args.get('_raw_params'))
include_variables = include_result.get('include_variables', dict())
if 'item' in include_result:
include_variables['item'] = include_result['item']
inc_file = IncludedFile(include_file, include_variables, original_task)
......
......@@ -20,6 +20,6 @@
- include: include.yml a=always
handlers:
- name: foo
include: include.yml a="this is a handler"
#- name: foo
# include: include.yml a="this is a handler"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment