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