mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-08-07 09:07:03 +02:00
Update to 2022-02-18 16:00
This commit is contained in:
18
roles/pgweb/templates/bookmark.toml.j2
Normal file
18
roles/pgweb/templates/bookmark.toml.j2
Normal 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 %}
|
Reference in New Issue
Block a user