mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
Don't wrap vars from include_vars with UnsafeProxy
This commit is contained in:
parent
4c7843f268
commit
46984a067c
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ class StrategyBase:
|
||||||
|
|
||||||
if result[0] == 'set_host_var':
|
if result[0] == 'set_host_var':
|
||||||
var_name = result[4]
|
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)
|
self._variable_manager.set_host_variable(target_host, var_name, var_value)
|
||||||
elif result[0] == 'set_host_facts':
|
elif result[0] == 'set_host_facts':
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue