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