From dd2ac642519efae5ba6d68673e901093f6903318 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 31 Jul 2021 10:48:53 -0600 Subject: [PATCH] Update database_version add postgresql 14 and remove versions older than 9.6. PostgreSQL 12 works the best currently for the install script the other versions are there because they can be installed on FreeBSD 13. However other versions may have issues with PHP package that is built to use PostgreSQL 12. --- freebsd/resources/config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freebsd/resources/config.sh b/freebsd/resources/config.sh index ba4b7b4..ced492d 100755 --- a/freebsd/resources/config.sh +++ b/freebsd/resources/config.sh @@ -14,7 +14,7 @@ switch_tls=true # true or false # Database Settings database_enabled=true # true or false database_password=random # random or as a pre-set value -database_version=12 # Postgres 13, 12, 11, 10, 9.6, 9.5, 9.4 +database_version=12 # Postgres 14, 13, 12, 11, 10, 9.6 database_host=127.0.0.1 # hostname or IP address database_port=5432 # port number database_backup=false # true or false