Browse Source

Option to install PostgreSQL 13

FusionPBX 4 năm trước cách đây
mục cha
commit
32c4e6e16e
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      ubuntu/resources/postgresql.sh

+ 2 - 2
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