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:
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':
|
||||
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':
|
||||
|
|
Loading…
Reference in a new issue