Update to 2022-02-18 16:00

This commit is contained in:
Daniel Berteaud
2022-02-18 16:00:06 +01:00
parent 67e32c9d59
commit 767adc1e83
19 changed files with 282 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
{% if item.url is defined %}
url = "{{ item.url }}"
{% else %}
host = "{{ item.host }}"
database = "{{ item.database }}"
{% if item.port is defined %}
port = {{ item.port }}
{% endif %}
{% if item.user is defined %}
user = "{{ item.user }}"
{% endif %}
{% if item.pass is defined %}
password = "{{ item.pass }}"
{% endif %}
{% if item.ssl is defined %}
ssl = "{{ item.ssl }}"
{% endif %}
{% endif %}