From db6d1ebdedf07b714d9664313c085aa6bc621277 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Mon, 15 Jan 2024 15:29:34 -0500 Subject: [PATCH] 21383: Use postgres formula with support for Debian 12 Arvados-DCO-1.1-Signed-off-by: Brett Smith --- tools/salt-install/provision.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/salt-install/provision.sh b/tools/salt-install/provision.sh index f3704c4c19..143d21cb81 100755 --- a/tools/salt-install/provision.sh +++ b/tools/salt-install/provision.sh @@ -287,10 +287,8 @@ VERSION="latest" SALT_VERSION="3006" # Other formula versions we depend on -#POSTGRES_TAG="v0.44.0" -#POSTGRES_URL="https://github.com/saltstack-formulas/postgres-formula.git" -POSTGRES_TAG="0.45.0-bugfix327" -POSTGRES_URL="https://github.com/arvados/postgres-formula.git" +POSTGRES_TAG="7529300c287b1c288af0f494ca668c2217bd1c5d" +POSTGRES_URL="https://github.com/saltstack-formulas/postgres-formula.git" NGINX_TAG="v2.8.1" DOCKER_TAG="v2.4.2" LOCALE_TAG="v0.3.4" @@ -431,7 +429,7 @@ test -d nginx && ( cd nginx && git fetch ) \ echo "...postgres" test -d postgres && ( cd postgres && git fetch ) \ || git clone --quiet ${POSTGRES_URL} ${F_DIR}/postgres -( cd postgres && git checkout --quiet tags/"${POSTGRES_TAG}" ) +( cd postgres && git checkout --quiet "${POSTGRES_TAG}" ) echo "...prometheus" test -d prometheus && ( cd prometheus && git fetch ) \ -- 2.30.2