try to fix unicode in list templating

This commit is contained in:
Robert Kaussow 2018-10-16 21:24:00 +02:00
parent 65c2c686f5
commit 6483008152
1 changed files with 3 additions and 3 deletions

View File

@ -26,12 +26,12 @@
# - Connection Settings -
listen_addresses = {{ postgres_connection_addresses | join(",") }}
listen_addresses = {{ postgres_connection_addresses | list | join(",") }}
port = {{ postgres_connection_port }}
max_connections = 100
#superuser_reserved_connections = 3
unix_socket_directories = '{{ postgres_socket_directories }}'
#unix_socket_group = '{{ postgres_socket_directories | join(",") }}'
#unix_socket_group = '{{ postgres_socket_directories | list | join(",") }}'
#unix_socket_permissions = 0777
#bonjour = off
#bonjour_name = ''
@ -132,7 +132,7 @@ dynamic_shared_memory_type = posix
# - Where to Log -
log_destination = '{{ postgres_log_destination | join(",") }}'
log_destination = '{{ postgres_log_destination | list | join(",") }}'
# This is used when logging to stderr:
{% if "stderr" in postgres_log_destination or "csvlog" in postgres_log_destination %}
logging_collector = on