ansible-role-diun/templates/diun.yaml

26 lines
451 B
YAML
Raw Permalink Normal View History

2023-03-01 10:56:33 +01:00
# Managed by Ansible
db:
path: {{ diun_home }}/diun.db
{% if diun_watch is defined %}
2023-03-01 11:35:03 +01:00
watch:
{{ diun_watch.config | indent(2) }}
2023-03-01 10:56:33 +01:00
{% endif %}
{% if diun_notif is defined %}
notif:
2023-03-01 11:35:03 +01:00
{% for name in diun_notif %}
{{ name.name }}:
{{ name.config | indent(4) }}
{% endfor %}
2023-03-01 10:56:33 +01:00
{% endif %}
{% if diun_providers is defined %}
providers:
2023-03-01 11:35:03 +01:00
{% for name in diun_providers %}
{{ name.name }}:
{{ name.config | indent(4) }}
{% endfor %}
2023-03-01 10:56:33 +01:00
{% endif %}