From 16b805e466b69396140df72d73a7bdb76d5276cc Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 11 Dec 2025 13:55:33 +0100 Subject: [PATCH] Update default PostgreSQL version to 13 Changed the default PostgreSQL version from 12 to 13 in both the setup script and the JSON configuration. Also removed a redundant password change warning from the JSON notes. --- ct/postgresus.sh | 2 +- frontend/public/json/postgresus.json | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/ct/postgresus.sh b/ct/postgresus.sh index 13b5ba41d..a726e79f5 100644 --- a/ct/postgresus.sh +++ b/ct/postgresus.sh @@ -11,7 +11,7 @@ var_cpu="${var_cpu:-2}" var_ram="${var_ram:-2048}" var_disk="${var_disk:-8}" var_os="${var_os:-debian}" -var_version="${var_version:-12}" +var_version="${var_version:-13}" var_unprivileged="${var_unprivileged:-1}" header_info "$APP" diff --git a/frontend/public/json/postgresus.json b/frontend/public/json/postgresus.json index c49027205..5d569429a 100644 --- a/frontend/public/json/postgresus.json +++ b/frontend/public/json/postgresus.json @@ -24,7 +24,7 @@ "ram": 2048, "hdd": 8, "os": "Debian", - "version": "12" + "version": "13" } } ], @@ -33,10 +33,6 @@ "password": "See /root/postgresus.creds" }, "notes": [ - { - "text": "Change the default password after first login for security", - "type": "warning" - }, { "text": "Supports PostgreSQL versions 12-18 with cloud and self-hosted instances", "type": "info"