forked from ccchb/ansible
6 lines
147 B
Django/Jinja
6 lines
147 B
Django/Jinja
{% for guest in bhyve_guests %}
|
||
{% if not (guest.enabled | default) %}
|
||
bhyve-{{ guest.name }}
|
||
bhyve-{{ guest.name }}-log
|
||
{% endif %}
|
||
{% endfor %}
|