From dc85718658a0772febb94c3411d72d2f200ee061 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 29 Oct 2022 19:02:04 -0500 Subject: [PATCH] Remove unused code from CI script --- ci/setup_test.bash | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ci/setup_test.bash b/ci/setup_test.bash index 520e3e44..e64fcf7b 100755 --- a/ci/setup_test.bash +++ b/ci/setup_test.bash @@ -11,11 +11,6 @@ then sudo apt-get -y -o Dpkg::Options::=--force-confdef -o Dpkg::Options::="--force-confnew" install postgresql-$PGVERSION postgresql-server-dev-$PGVERSION postgresql-contrib-$PGVERSION sudo cp testsetup/pg_hba.conf /etc/postgresql/$PGVERSION/main/pg_hba.conf sudo chmod 777 /etc/postgresql/$PGVERSION/main/postgresql.conf - if $(dpkg --compare-versions $PGVERSION ge 9.6) ; then - 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 - fi sudo /etc/init.d/postgresql restart createdb -U postgres pgx_test