ansible-role-diun/templates/diun.yaml
2023-03-01 12:41:22 +01:00

26 lines
451 B
YAML

# Managed by Ansible
db:
path: {{ diun_home }}/diun.db
{% if diun_watch is defined %}
watch:
{{ diun_watch.config | indent(2) }}
{% endif %}
{% if diun_notif is defined %}
notif:
{% for name in diun_notif %}
{{ name.name }}:
{{ name.config | indent(4) }}
{% endfor %}
{% endif %}
{% if diun_providers is defined %}
providers:
{% for name in diun_providers %}
{{ name.name }}:
{{ name.config | indent(4) }}
{% endfor %}
{% endif %}