set_fact should put facts in the fact_cache, not vars_cache

Also fixes a template path lookup issue when using an include

Fixes #12277
This commit is contained in:
James Cammarata 2015-09-09 11:10:18 -04:00
commit 926f127245
2 changed files with 23 additions and 2 deletions

View file

@ -158,7 +158,7 @@ class ResultProcess(multiprocessing.Process):
elif 'ansible_facts' in result_item:
# if this task is registering facts, do that now
item = result_item.get('item', None)
if result._task.action in ('set_fact', 'include_vars'):
if result._task.action == 'include_vars':
for (key, value) in iteritems(result_item['ansible_facts']):
self._send_result(('set_host_var', result._host, result._task, item, key, value))
else: