Remove a non existing option.

This commit is contained in:
Andrea Dell'Amico 2021-04-06 14:28:10 +02:00
parent 74af14a437
commit 7f52dbbe4f
1 changed files with 1 additions and 3 deletions

View File

@ -8,8 +8,6 @@ pg_use_postgresql_org_repo: True
psql_postgresql_install: True
psql_pkg_state: present
postgresql_enabled: True
postgresql_streaming_replication: False
postgresql_streaming_replication_primary_node: 'localhost'
psql_version: 13
psql_db_host: localhost
psql_db_port: 5432
@ -97,6 +95,7 @@ psql_autovacuum_configuration:
- { name: 'autovacuum_naptime', value: '10', set: 'True' }
# Streaming replication settings
postgresql_streaming_replication: False
postgresql_streaming_replication_primary_node: 'localhost'
psql_streaming_replication_hosts:
- 'localhost'
@ -105,7 +104,6 @@ psql_streaming_replication_user: psql_replica
psql_streaming_replication_config:
- { name: 'wal_level', value: 'replica' }
- { name: 'max_wal_senders', value: '10' }
- { name: 'wal_keep_segments', value: '8' }
- { name: 'wal_keep_size', value: '1GB' }
- { name: 'wal_compression', value: 'on' }
- { name: 'wal_log_hints', value: 'on' }