Revert "set_fact should put facts in the fact_cache, not vars_cache"

This reverts commit 926f127245.
This commit is contained in:
James Cammarata
2015-09-11 01:14:06 -04:00
parent 441a8af671
commit 083aef65ad
2 changed files with 2 additions and 23 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 == 'include_vars':
if result._task.action in ('set_fact', '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: