Teamcity/postgres/set-pg-conf.sh
2019-02-13 23:45:41 +01:00

8 lines
No EOL
400 B
Bash

#!/bin/bash
# Set recommended for TeamCity settings
# https://confluence.jetbrains.com/pages/viewpage.action?pageId=74847395#HowTo...-ConfigureNewlyInstalledPostgreSQLServer
PG_CONF=/var/lib/postgresql/data/postgresql.conf
grep -q -F 'synchronous_commit=off' $PG_CONF || echo 'synchronous_commit=off' >> $PG_CONF
grep -q -F 'shared_buffers=512MB' $PG_CONF || echo 'shared_buffers=512MB' >> $PG_CONF