From 34086dc0e0fc2ac04d63245471676757122dbc62 Mon Sep 17 00:00:00 2001 From: Bear Date: Sun, 23 Jul 2023 04:21:51 -0500 Subject: [PATCH 1/2] july updates --- bin/postgresql11.17/bearsampp.conf | 4 +-- bin/postgresql11.20/bearsampp.conf | 14 ++++++++ .../init.bat | 0 .../pg_hba.conf.ber | 0 bin/postgresql11.20/postgresql.conf.ber | 35 +++++++++++++++++++ bin/postgresql11.3/bearsampp.conf | 4 +-- bin/postgresql12.12/bearsampp.conf | 4 +-- bin/postgresql12.15/bearsampp.conf | 14 ++++++++ bin/postgresql12.15/init.bat | 5 +++ bin/postgresql12.15/pg_hba.conf.ber | 3 ++ bin/postgresql12.15/postgresql.conf.ber | 35 +++++++++++++++++++ bin/postgresql13.11/bearsampp.conf | 14 ++++++++ bin/postgresql13.11/init.bat | 5 +++ bin/postgresql13.11/pg_hba.conf.ber | 3 ++ bin/postgresql13.11/postgresql.conf.ber | 35 +++++++++++++++++++ bin/postgresql13.7/bearsampp.conf | 4 +-- bin/postgresql13.8/bearsampp.conf | 4 +-- bin/postgresql14.4/bearsampp.conf | 4 +-- bin/postgresql14.5/bearsampp.conf | 4 +-- .../bearsampp.conf | 2 +- bin/postgresql14.8/init.bat | 5 +++ bin/postgresql14.8/pg_hba.conf.ber | 3 ++ .../postgresql.conf.ber | 6 ++-- bin/postgresql15.3/bearsampp.conf | 14 ++++++++ bin/postgresql15.3/init.bat | 5 +++ bin/postgresql15.3/pg_hba.conf.ber | 3 ++ bin/postgresql15.3/postgresql.conf.ber | 35 +++++++++++++++++++ build.properties | 2 +- 28 files changed, 247 insertions(+), 19 deletions(-) create mode 100644 bin/postgresql11.20/bearsampp.conf rename bin/{postgresql15.0 => postgresql11.20}/init.bat (100%) rename bin/{postgresql15.0 => postgresql11.20}/pg_hba.conf.ber (100%) create mode 100644 bin/postgresql11.20/postgresql.conf.ber create mode 100644 bin/postgresql12.15/bearsampp.conf create mode 100644 bin/postgresql12.15/init.bat create mode 100644 bin/postgresql12.15/pg_hba.conf.ber create mode 100644 bin/postgresql12.15/postgresql.conf.ber create mode 100644 bin/postgresql13.11/bearsampp.conf create mode 100644 bin/postgresql13.11/init.bat create mode 100644 bin/postgresql13.11/pg_hba.conf.ber create mode 100644 bin/postgresql13.11/postgresql.conf.ber rename bin/{postgresql15.0 => postgresql14.8}/bearsampp.conf (94%) create mode 100644 bin/postgresql14.8/init.bat create mode 100644 bin/postgresql14.8/pg_hba.conf.ber rename bin/{postgresql15.0 => postgresql14.8}/postgresql.conf.ber (90%) create mode 100644 bin/postgresql15.3/bearsampp.conf create mode 100644 bin/postgresql15.3/init.bat create mode 100644 bin/postgresql15.3/pg_hba.conf.ber create mode 100644 bin/postgresql15.3/postgresql.conf.ber diff --git a/bin/postgresql11.17/bearsampp.conf b/bin/postgresql11.17/bearsampp.conf index 2932a3b9..7a9c704b 100644 --- a/bin/postgresql11.17/bearsampp.conf +++ b/bin/postgresql11.17/bearsampp.conf @@ -5,8 +5,8 @@ postgresqlDumpExe = "bin/pg_dump.exe" postgresqlDumpAllExe = "bin/pg_dumpall.exe" postgresqlConf = "data/postgresql.conf" postgresqlUserConf = "data/pg_hba.conf" -postgresqlAltConf = "postgresql.conf.ber" -postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" postgresqlPort = "5432" postgresqlRootUser = "postgres" postgresqlRootPwd = "" diff --git a/bin/postgresql11.20/bearsampp.conf b/bin/postgresql11.20/bearsampp.conf new file mode 100644 index 00000000..caef2942 --- /dev/null +++ b/bin/postgresql11.20/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "11.20" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql15.0/init.bat b/bin/postgresql11.20/init.bat similarity index 100% rename from bin/postgresql15.0/init.bat rename to bin/postgresql11.20/init.bat diff --git a/bin/postgresql15.0/pg_hba.conf.ber b/bin/postgresql11.20/pg_hba.conf.ber similarity index 100% rename from bin/postgresql15.0/pg_hba.conf.ber rename to bin/postgresql11.20/pg_hba.conf.ber diff --git a/bin/postgresql11.20/postgresql.conf.ber b/bin/postgresql11.20/postgresql.conf.ber new file mode 100644 index 00000000..f6a6f4e0 --- /dev/null +++ b/bin/postgresql11.20/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql11.20/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql11.20/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql11.20/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql11.3/bearsampp.conf b/bin/postgresql11.3/bearsampp.conf index 02b307ee..13cf0707 100644 --- a/bin/postgresql11.3/bearsampp.conf +++ b/bin/postgresql11.3/bearsampp.conf @@ -5,8 +5,8 @@ postgresqlDumpExe = "bin/pg_dump.exe" postgresqlDumpAllExe = "bin/pg_dumpall.exe" postgresqlConf = "data/postgresql.conf" postgresqlUserConf = "data/pg_hba.conf" -postgresqlAltConf = "postgresql.conf.ber" -postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" postgresqlPort = "5432" postgresqlRootUser = "postgres" postgresqlRootPwd = "" diff --git a/bin/postgresql12.12/bearsampp.conf b/bin/postgresql12.12/bearsampp.conf index cc902be2..a5d13f67 100644 --- a/bin/postgresql12.12/bearsampp.conf +++ b/bin/postgresql12.12/bearsampp.conf @@ -5,8 +5,8 @@ postgresqlDumpExe = "bin/pg_dump.exe" postgresqlDumpAllExe = "bin/pg_dumpall.exe" postgresqlConf = "data/postgresql.conf" postgresqlUserConf = "data/pg_hba.conf" -postgresqlAltConf = "postgresql.conf.ber" -postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" postgresqlPort = "5432" postgresqlRootUser = "postgres" postgresqlRootPwd = "" diff --git a/bin/postgresql12.15/bearsampp.conf b/bin/postgresql12.15/bearsampp.conf new file mode 100644 index 00000000..460b8392 --- /dev/null +++ b/bin/postgresql12.15/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "12.15" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql12.15/init.bat b/bin/postgresql12.15/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql12.15/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql12.15/pg_hba.conf.ber b/bin/postgresql12.15/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql12.15/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql12.15/postgresql.conf.ber b/bin/postgresql12.15/postgresql.conf.ber new file mode 100644 index 00000000..b70975a7 --- /dev/null +++ b/bin/postgresql12.15/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql12.15/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql12.15/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql12.15/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql13.11/bearsampp.conf b/bin/postgresql13.11/bearsampp.conf new file mode 100644 index 00000000..a6b5b14d --- /dev/null +++ b/bin/postgresql13.11/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "13.11" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql13.11/init.bat b/bin/postgresql13.11/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql13.11/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql13.11/pg_hba.conf.ber b/bin/postgresql13.11/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql13.11/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql13.11/postgresql.conf.ber b/bin/postgresql13.11/postgresql.conf.ber new file mode 100644 index 00000000..96fe7966 --- /dev/null +++ b/bin/postgresql13.11/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql13.11/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql13.11/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql13.11/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql13.7/bearsampp.conf b/bin/postgresql13.7/bearsampp.conf index 20e0ecc1..2987cbb3 100644 --- a/bin/postgresql13.7/bearsampp.conf +++ b/bin/postgresql13.7/bearsampp.conf @@ -5,8 +5,8 @@ postgresqlDumpExe = "bin/pg_dump.exe" postgresqlDumpAllExe = "bin/pg_dumpall.exe" postgresqlConf = "data/postgresql.conf" postgresqlUserConf = "data/pg_hba.conf" -postgresqlAltConf = "postgresql.conf.ber" -postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" postgresqlPort = "5432" postgresqlRootUser = "postgres" postgresqlRootPwd = "" diff --git a/bin/postgresql13.8/bearsampp.conf b/bin/postgresql13.8/bearsampp.conf index 14004c09..ff51084e 100644 --- a/bin/postgresql13.8/bearsampp.conf +++ b/bin/postgresql13.8/bearsampp.conf @@ -5,8 +5,8 @@ postgresqlDumpExe = "bin/pg_dump.exe" postgresqlDumpAllExe = "bin/pg_dumpall.exe" postgresqlConf = "data/postgresql.conf" postgresqlUserConf = "data/pg_hba.conf" -postgresqlAltConf = "postgresql.conf.ber" -postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" postgresqlPort = "5432" postgresqlRootUser = "postgres" postgresqlRootPwd = "" diff --git a/bin/postgresql14.4/bearsampp.conf b/bin/postgresql14.4/bearsampp.conf index 99886163..a33258c7 100644 --- a/bin/postgresql14.4/bearsampp.conf +++ b/bin/postgresql14.4/bearsampp.conf @@ -5,8 +5,8 @@ postgresqlDumpExe = "bin/pg_dump.exe" postgresqlDumpAllExe = "bin/pg_dumpall.exe" postgresqlConf = "data/postgresql.conf" postgresqlUserConf = "data/pg_hba.conf" -postgresqlAltConf = "postgresql.conf.ber" -postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" postgresqlPort = "5432" postgresqlRootUser = "postgres" postgresqlRootPwd = "" diff --git a/bin/postgresql14.5/bearsampp.conf b/bin/postgresql14.5/bearsampp.conf index 76f1b854..8090b308 100644 --- a/bin/postgresql14.5/bearsampp.conf +++ b/bin/postgresql14.5/bearsampp.conf @@ -5,8 +5,8 @@ postgresqlDumpExe = "bin/pg_dump.exe" postgresqlDumpAllExe = "bin/pg_dumpall.exe" postgresqlConf = "data/postgresql.conf" postgresqlUserConf = "data/pg_hba.conf" -postgresqlAltConf = "postgresql.conf.ber" -postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlAltConf = "postgresql.conf" +postgresqlAltUserConf = "pg_hba.conf" postgresqlPort = "5432" postgresqlRootUser = "postgres" postgresqlRootPwd = "" diff --git a/bin/postgresql15.0/bearsampp.conf b/bin/postgresql14.8/bearsampp.conf similarity index 94% rename from bin/postgresql15.0/bearsampp.conf rename to bin/postgresql14.8/bearsampp.conf index da363918..81a1aa6c 100644 --- a/bin/postgresql15.0/bearsampp.conf +++ b/bin/postgresql14.8/bearsampp.conf @@ -1,4 +1,4 @@ -postgresqlVersion = "15.0" +postgresqlVersion = "14.8" postgresqlCtlExe = "bin/pg_ctl.exe" postgresqlCliExe = "bin/psql.exe" postgresqlDumpExe = "bin/pg_dump.exe" diff --git a/bin/postgresql14.8/init.bat b/bin/postgresql14.8/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql14.8/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql14.8/pg_hba.conf.ber b/bin/postgresql14.8/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql14.8/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql15.0/postgresql.conf.ber b/bin/postgresql14.8/postgresql.conf.ber similarity index 90% rename from bin/postgresql15.0/postgresql.conf.ber rename to bin/postgresql14.8/postgresql.conf.ber index 7e893a8e..ac2d8d15 100644 --- a/bin/postgresql15.0/postgresql.conf.ber +++ b/bin/postgresql14.8/postgresql.conf.ber @@ -1,9 +1,9 @@ #------------------------------------------------------------------------------ # FILE LOCATIONS #------------------------------------------------------------------------------ -data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.0/data' -hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.0/data/pg_hba.conf' -ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.0/data/pg_ident.conf' +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.8/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.8/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.8/data/pg_ident.conf' #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION diff --git a/bin/postgresql15.3/bearsampp.conf b/bin/postgresql15.3/bearsampp.conf new file mode 100644 index 00000000..309c65a6 --- /dev/null +++ b/bin/postgresql15.3/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "15.3" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.ber" +postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql15.3/init.bat b/bin/postgresql15.3/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql15.3/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql15.3/pg_hba.conf.ber b/bin/postgresql15.3/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql15.3/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql15.3/postgresql.conf.ber b/bin/postgresql15.3/postgresql.conf.ber new file mode 100644 index 00000000..134910f5 --- /dev/null +++ b/bin/postgresql15.3/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.3/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.3/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.3/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/build.properties b/build.properties index 8131b558..3d1e6381 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ bundle.name = postgresql -bundle.release = 2023.4.20 +bundle.release = 2023.7.23 bundle.type = bins bundle.format = 7z From aa0dca024b544acbde39a704bffd5569cd09b930 Mon Sep 17 00:00:00 2001 From: Jacob Waisner Date: Sun, 23 Jul 2023 11:09:27 -0500 Subject: [PATCH 2/2] Updating with latest releases. --- releases.properties | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/releases.properties b/releases.properties index 2d2c14ef..a22e95db 100644 --- a/releases.properties +++ b/releases.properties @@ -1,8 +1,13 @@ 11.3 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.07.16/bearsampp-postgresql-11.3-2022.07.16.7z 11.17 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.28/bearsampp-postgresql-11.17-2022.08.04.7z +11.20 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-11.20-2023.7.23.7z 12.12 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.28/bearsampp-postgresql-12.12-2022.08.04.7z +12.15 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-12.15-2023.7.23.7z 13.7 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.04/bearsampp-postgresql-13.7-2022.08.04.7z 13.8 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.28/bearsampp-postgresql-13.8-2022.08.04.7z +13.11 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-13.11-2023.7.23.7z 14.4 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.04/bearsampp-postgresql-14.4-2022.08.04.7z 14.5 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.28/bearsampp-postgresql-14.5-2022.08.28.7z +14.8 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-14.8-2023.7.23.7z 15.0 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.10.28/bearsampp-postgresql-15.0-2022.10.28.7z +15.3 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-15.3-2023.7.23.7z