mirror of https://dev.ccchb.de/ccchb/ansible.git
7 lines
141 B
Plaintext
7 lines
141 B
Plaintext
|
{% for guest in bhyve_guests %}
|
|||
|
{% if guest.enabled | default %}
|
|||
|
bhyve-{{ guest.name }}
|
|||
|
bhyve-{{ guest.name }}-log
|
|||
|
{% endif %}
|
|||
|
{% endfor %}
|