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

Don't wrap vars from include_vars with UnsafeProxy

This commit is contained in:
James Cammarata 2015-09-26 15:16:14 -04:00
parent 4c7843f268
commit 46984a067c

View file

@ -268,7 +268,7 @@ class StrategyBase:
if result[0] == 'set_host_var':
var_name = result[4]
var_value = wrap_var(result[5])
var_value = result[5]
self._variable_manager.set_host_variable(target_host, var_name, var_value)
elif result[0] == 'set_host_facts':