Dont break old postgres

pull/224/head
Kris Wehner 2017-01-05 09:55:38 -08:00
parent 8f5875b7b2
commit 71a61cd2c5
1 changed files with 4 additions and 4 deletions

View File

@ -19,11 +19,11 @@ before_install:
- echo "host all pgx_md5 127.0.0.1/32 md5" >> /etc/postgresql/$PGVERSION/main/pg_hba.conf
- echo "host all pgx_pw 127.0.0.1/32 password" >> /etc/postgresql/$PGVERSION/main/pg_hba.conf
- echo "hostssl all pgx_ssl 127.0.0.1/32 md5" >> /etc/postgresql/$PGVERSION/main/pg_hba.conf
- echo "host replication pgx_ssl 127.0.0.1/32 md5" >> /etc/postgresql/$PGVERSION/main/pg_hba.conf
- echo "host replication pgx_replication 127.0.0.1/32 md5" >> /etc/postgresql/$PGVERSION/main/pg_hba.conf
- sudo chmod 777 /etc/postgresql/$PGVERSION/main/postgresql.conf
- echo "wal_level='logical'" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
- echo "max_wal_senders=5" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
- echo "max_replication_slots=5" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
- [[ $PGVERSION > 9.3 ]] && echo "wal_level='logical'" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
- [[ $PGVERSION > 9.3 ]] && echo "max_wal_senders=5" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
- [[ $PGVERSION > 9.3 ]] && echo "max_replication_slots=5" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
- sudo /etc/init.d/postgresql restart
env: