mirror of https://github.com/fspc/workstand.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
416 B
11 lines
416 B
# environment variables for postmaster process
|
|
# This file has the same syntax as postgresql.conf:
|
|
# VARIABLE = simple_value
|
|
# VARIABLE2 = 'any value!'
|
|
# I. e. you need to enclose any value which does not only consist of letters,
|
|
# numbers, and '-', '_', '.' in single quotes. Shell commands are not
|
|
# evaluated.
|
|
|
|
{% if postgresql_env %}{% for k,v in postgresql_env.items() %}
|
|
{{k}} = {{v}}
|
|
{% endfor %}{% endif %}
|