5 lines
188 B
Smarty
5 lines
188 B
Smarty
{% for host in vars['ansible_play_hosts'] | sort %}
|
|
{% if hostvars[host]['incus_name'] == task_name and "cluster" in hostvars[host]['incus_roles'] %}
|
|
- {{ host }}
|
|
{% endif %}
|
|
{% endfor %}
|