aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/postgresql.9.4.conf.j2
diff options
context:
space:
mode:
authorPaul B <paul@bonaud.fr>2020-05-11 15:10:33 +0200
committerPaul B <paul@bonaud.fr>2020-05-11 15:11:44 +0200
commit3a76f4474de3eb520efdfe4b41918bce2d9576ff (patch)
tree41477a880ca169ade9b31245e6192d4e3a7ee838 /templates/postgresql.9.4.conf.j2
parent0415357ede1fc2f2e1ebd543a96551fcd8a046fe (diff)
downloadansible-postgresql-role-3a76f4474de3eb520efdfe4b41918bce2d9576ff.tar.gz
ansible-postgresql-role-3a76f4474de3eb520efdfe4b41918bce2d9576ff.tar.zst
ansible-postgresql-role-3a76f4474de3eb520efdfe4b41918bce2d9576ff.zip
parameters: allow wal_level customisation
This commit allows customisation of the `wal_level` PG config on all supported PG versions
Diffstat (limited to 'templates/postgresql.9.4.conf.j2')
-rw-r--r--templates/postgresql.9.4.conf.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/postgresql.9.4.conf.j2 b/templates/postgresql.9.4.conf.j2
index c251bfa..858ae3d 100644
--- a/templates/postgresql.9.4.conf.j2
+++ b/templates/postgresql.9.4.conf.j2
@@ -177,7 +177,7 @@ dynamic_shared_memory_type = posix # the default is the first option
177 177
178# - Settings - 178# - Settings -
179 179
180wal_level = logical # minimal, archive, hot_standby, or logical 180wal_level = {{ postgres_wal_level }} # minimal, archive, hot_standby, or logical
181 # (change requires restart) 181 # (change requires restart)
182 182
183{% if postgres_fsync_enabled %} 183{% if postgres_fsync_enabled %}