From 5bb4224ddf5f32c4b62ed2fad546ccf5b7cd409f Mon Sep 17 00:00:00 2001 From: Curtis Yung <6743839+curtis18@users.noreply.github.com> Date: Sat, 14 Jan 2023 12:06:14 +0800 Subject: [PATCH] Update run.sh add support to PostgreSQL 15 --- run.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run.sh b/run.sh index 69d54a1..ddd9af9 100755 --- a/run.sh +++ b/run.sh @@ -3,9 +3,9 @@ set -euo pipefail function createPostgresConfig() { - cp /etc/postgresql/14/main/postgresql.custom.conf.tmpl /etc/postgresql/14/main/conf.d/postgresql.custom.conf - sudo -u postgres echo "autovacuum = $AUTOVACUUM" >> /etc/postgresql/14/main/conf.d/postgresql.custom.conf - cat /etc/postgresql/14/main/conf.d/postgresql.custom.conf + cp /etc/postgresql/$PG_VERSION/main/postgresql.custom.conf.tmpl /etc/postgresql/$PG_VERSION/main/conf.d/postgresql.custom.conf + sudo -u postgres echo "autovacuum = $AUTOVACUUM" >> /etc/postgresql/$PG_VERSION/main/conf.d/postgresql.custom.conf + cat /etc/postgresql/$PG_VERSION/main/conf.d/postgresql.custom.conf } function setPostgresPassword() { @@ -46,7 +46,7 @@ if [ "$1" == "import" ]; then chown renderer: /data/database/ chown -R postgres: /var/lib/postgresql /data/database/postgres/ if [ ! -f /data/database/postgres/PG_VERSION ]; then - sudo -u postgres /usr/lib/postgresql/14/bin/pg_ctl -D /data/database/postgres/ initdb -o "--locale C.UTF-8" + sudo -u postgres /usr/lib/postgresql/$PG_VERSION/bin/pg_ctl -D /data/database/postgres/ initdb -o "--locale C.UTF-8" fi # Initialize PostgreSQL