From 370e61dc6dedfec18262188da8c4e79236f58726 Mon Sep 17 00:00:00 2001 From: dennis Date: Fri, 20 Dec 2024 00:28:30 +0000 Subject: [PATCH] Update postgresql-install.sh changed to support postgresql 16 instead of 17 --- postgresql-install.sh | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/postgresql-install.sh b/postgresql-install.sh index 2b7ff33..ebec9cc 100644 --- a/postgresql-install.sh +++ b/postgresql-install.sh @@ -4,6 +4,7 @@ # Author: tteck (tteckster) # License: MIT # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# modified by dd, to install postgres 16 not 17 source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color @@ -28,9 +29,9 @@ msg_ok "Setup PostgreSQL Repository" msg_info "Installing PostgreSQL" $STD apt-get update -$STD apt-get install -y postgresql +$STD apt-get install -y postgresql-16 -cat </etc/postgresql/17/main/pg_hba.conf +cat </etc/postgresql/16/main/pg_hba.conf # PostgreSQL Client Authentication Configuration File local all postgres peer # TYPE DATABASE USER ADDRESS METHOD @@ -49,7 +50,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/16/main/postgresql.conf # ----------------------------- # PostgreSQL configuration file # ----------------------------- @@ -58,10 +59,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/16/main' +hba_file = '/etc/postgresql/16/main/pg_hba.conf' +ident_file = '/etc/postgresql/16/main/pg_ident.conf' +external_pid_file = '/var/run/postgresql/16-main.pid' #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION @@ -107,7 +108,7 @@ log_timezone = 'Etc/UTC' # PROCESS TITLE #------------------------------------------------------------------------------ -cluster_name = '17/main' +cluster_name = '16/main' #------------------------------------------------------------------------------ # CLIENT CONNECTION DEFAULTS