From bdfb1123ba6d3a77d956952cc356a1935ce6dab8 Mon Sep 17 00:00:00 2001 From: "Jonathan Gonzalez V." Date: Tue, 25 Feb 2025 13:43:36 +0100 Subject: [PATCH] fix: set a fixed version of Barman to 3.12.1 (#68) The latest released version of Barman 3.13.0 introduced a change in the argment list for the restore. For more information check the following issue: https://github.com/cloudnative-pg/cloudnative-pg/issues/6932 Signed-off-by: Jonathan Gonzalez V. --- PostGIS/update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PostGIS/update.sh b/PostGIS/update.sh index 6c143e9..243fa09 100755 --- a/PostGIS/update.sh +++ b/PostGIS/update.sh @@ -51,7 +51,8 @@ fetch_postgres_image_version() { # Get the latest Barman version latest_barman_version= _raw_get_latest_barman_version() { - curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1 +# curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1 + echo "3.12.1" } get_latest_barman_version() { if [ -z "$latest_barman_version" ]; then