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