From 05a9180af2e2d7f43f350b97e773b20981388255 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Sat, 4 Oct 2025 08:01:24 +0200 Subject: [PATCH] psql: upgrade to 18 and deb13 --- install/postgresql-install.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/install/postgresql-install.sh b/install/postgresql-install.sh index 332bf7557..b2530d0e1 100644 --- a/install/postgresql-install.sh +++ b/install/postgresql-install.sh @@ -13,9 +13,9 @@ setting_up_container network_check update_os -PG_VERSION="17" setup_postgresql +PG_VERSION="18" setup_postgresql -cat </etc/postgresql/17/main/pg_hba.conf +cat </etc/postgresql/18/main/pg_hba.conf # PostgreSQL Client Authentication Configuration File local all postgres peer # TYPE DATABASE USER ADDRESS METHOD @@ -34,7 +34,7 @@ host replication all 127.0.0.1/32 scram-sha-256 host replication all ::1/128 scram-sha-256 EOF -cat </etc/postgresql/17/main/postgresql.conf +cat </etc/postgresql/18/main/postgresql.conf # ----------------------------- # PostgreSQL configuration file # ----------------------------- @@ -43,10 +43,10 @@ cat </etc/postgresql/17/main/postgresql.conf # FILE LOCATIONS #------------------------------------------------------------------------------ -data_directory = '/var/lib/postgresql/17/main' -hba_file = '/etc/postgresql/17/main/pg_hba.conf' -ident_file = '/etc/postgresql/17/main/pg_ident.conf' -external_pid_file = '/var/run/postgresql/17-main.pid' +data_directory = '/var/lib/postgresql/18/main' +hba_file = '/etc/postgresql/18/main/pg_hba.conf' +ident_file = '/etc/postgresql/18/main/pg_ident.conf' +external_pid_file = '/var/run/postgresql/18-main.pid' #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION