Skip to content

Commit

Permalink
Updated to use the standard "{{ var }}" format for new variables, rat…
Browse files Browse the repository at this point in the history
…her than "{{var}}"
  • Loading branch information
Greg Clough committed Mar 27, 2018
1 parent 68359af commit 2468343
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion templates/postgresql.conf-9.3.j2
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ vacuum_multixact_freeze_table_age = {{postgresql_vacuum_multixact_freeze_table_a
bytea_output = '{{postgresql_bytea_output}}' # hex, escape
xmlbinary = '{{postgresql_xmlbinary}}'
xmloption = '{{postgresql_xmloption}}'
gin_fuzzy_search_limit = '{{postgresql_gin_fuzzy_search_limit}}'
gin_fuzzy_search_limit = '{{ postgresql_gin_fuzzy_search_limit }}'

# - Locale and Formatting -

Expand Down
2 changes: 1 addition & 1 deletion templates/postgresql.conf-9.4.j2
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ vacuum_multixact_freeze_table_age = {{postgresql_vacuum_multixact_freeze_table_a
bytea_output = '{{postgresql_bytea_output}}' # hex, escape
xmlbinary = '{{postgresql_xmlbinary}}'
xmloption = '{{postgresql_xmloption}}'
gin_fuzzy_search_limit = '{{postgresql_gin_fuzzy_search_limit}}'
gin_fuzzy_search_limit = '{{ postgresql_gin_fuzzy_search_limit }}'

# - Locale and Formatting -

Expand Down
6 changes: 3 additions & 3 deletions templates/postgresql.conf-9.5.j2
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ log_timezone = '{{postgresql_log_timezone}}'

# - Process Title -

cluster_name = '{{postgresql_cluster_name}}' # added to process titles if nonempty
cluster_name = '{{ postgresql_cluster_name }}' # added to process titles if nonempty
# (change requires restart)
update_process_title = {{'on' if postgresql_update_process_title else 'off'}}

Expand Down Expand Up @@ -529,8 +529,8 @@ vacuum_multixact_freeze_table_age = {{postgresql_vacuum_multixact_freeze_table_a
bytea_output = '{{postgresql_bytea_output}}' # hex, escape
xmlbinary = '{{postgresql_xmlbinary}}'
xmloption = '{{postgresql_xmloption}}'
gin_fuzzy_search_limit = '{{postgresql_gin_fuzzy_search_limit}}'
gin_pending_list_limit = '{{postgresql_gin_pending_list_limit}}'
gin_fuzzy_search_limit = '{{ postgresql_gin_fuzzy_search_limit }}'
gin_pending_list_limit = '{{ postgresql_gin_pending_list_limit }}'

# - Locale and Formatting -

Expand Down
6 changes: 3 additions & 3 deletions templates/postgresql.conf-9.6.j2
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ log_timezone = '{{postgresql_log_timezone}}'

# - Process Title -

cluster_name = '{{postgresql_cluster_name}}' # added to process titles if nonempty
cluster_name = '{{ postgresql_cluster_name }}' # added to process titles if nonempty
# (change requires restart)
update_process_title = {{'on' if postgresql_update_process_title else 'off'}}

Expand Down Expand Up @@ -544,8 +544,8 @@ vacuum_multixact_freeze_table_age = {{postgresql_vacuum_multixact_freeze_table_a
bytea_output = '{{postgresql_bytea_output}}' # hex, escape
xmlbinary = '{{postgresql_xmlbinary}}'
xmloption = '{{postgresql_xmloption}}'
gin_fuzzy_search_limit = '{{postgresql_gin_fuzzy_search_limit}}'
gin_pending_list_limit = '{{postgresql_gin_pending_list_limit}}'
gin_fuzzy_search_limit = '{{ postgresql_gin_fuzzy_search_limit }}'
gin_pending_list_limit = '{{ postgresql_gin_pending_list_limit }}'

# - Locale and Formatting -

Expand Down

0 comments on commit 2468343

Please sign in to comment.