From 32c4e6e16e9220255cf57200c958f5616106a5de Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 7 Oct 2021 11:03:00 -0600 Subject: [PATCH] Option to install PostgreSQL 13 --- ubuntu/resources/postgresql.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubuntu/resources/postgresql.sh b/ubuntu/resources/postgresql.sh index 3cc1aa2..92b9efd 100755 --- a/ubuntu/resources/postgresql.sh +++ b/ubuntu/resources/postgresql.sh @@ -31,10 +31,10 @@ if [ ."$database_repo" = ."official" ]; then if [ ."$database_version" = ."latest" ]; then apt-get install -y sudo postgresql fi - if [ ."$database_version" = ."9.6" ]; then + if [ ."$database_version" = ."14" ]; then apt-get install -y sudo postgresql-$database_version fi - if [ ."$database_version" = ."9.4" ]; then + if [ ."$database_version" = ."13" ]; then apt-get install -y sudo postgresql-$database_version fi fi