mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Correct delegated_host_name check
In fb50698da3
a check for delegated_host_name being defined was added. Make this
check safer as it breaks some playbooks.
This commit is contained in:
parent
b06fb2022c
commit
a32e48555d
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ class VariableManager:
|
|||
|
||||
templar.set_available_variables(vars_copy)
|
||||
delegated_host_name = templar.template(task.delegate_to, fail_on_undefined=False)
|
||||
if not delegated_host_name:
|
||||
if delegated_host_name is None:
|
||||
raise AnsibleError(message="Undefined delegate_to host for task:", obj=task._ds)
|
||||
if delegated_host_name in delegated_host_vars:
|
||||
# no need to repeat ourselves, as the delegate_to value
|
||||
|
|
Loading…
Reference in a new issue