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