From 927e95408b7e56f8798afb2b924b4ab3143aa046 Mon Sep 17 00:00:00 2001 From: idanovinda Date: Wed, 25 Sep 2024 16:38:00 +0200 Subject: [PATCH] use last commit for set_user --- postgres-appliance/Dockerfile | 3 ++- postgres-appliance/build_scripts/base.sh | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/postgres-appliance/Dockerfile b/postgres-appliance/Dockerfile index bd3e0a9d..6180d88d 100644 --- a/postgres-appliance/Dockerfile +++ b/postgres-appliance/Dockerfile @@ -58,7 +58,8 @@ ENV POSTGIS_VERSION=3.4 \ BG_MON_COMMIT=7f5887218790b263fe3f42f85f4ddc9c8400b154 \ PG_AUTH_MON_COMMIT=fe099eef7662cbc85b0b79191f47f52f1e96b779 \ PG_MON_COMMIT=ead1de70794ed62ca1e34d4022f6165ff36e9a91 \ - SET_USER=REL4_1_0 \ + SET_USER=REL4_0_1 \ + SET_USER_COMMT=1dc57a8b6ad0adc01e2c9f21d468f2c140056261 \ PLPROFILER=REL4_2_4 \ PG_PROFILE=4.6 \ PAM_OAUTH2=v1.0.1 \ diff --git a/postgres-appliance/build_scripts/base.sh b/postgres-appliance/build_scripts/base.sh index 9163dec7..31f24645 100644 --- a/postgres-appliance/build_scripts/base.sh +++ b/postgres-appliance/build_scripts/base.sh @@ -55,7 +55,8 @@ curl -sL "https://github.com/zalando-pg/bg_mon/archive/$BG_MON_COMMIT.tar.gz" | curl -sL "https://github.com/zalando-pg/pg_auth_mon/archive/$PG_AUTH_MON_COMMIT.tar.gz" | tar xz curl -sL "https://github.com/cybertec-postgresql/pg_permissions/archive/$PG_PERMISSIONS_COMMIT.tar.gz" | tar xz curl -sL "https://github.com/zubkov-andrei/pg_profile/archive/$PG_PROFILE.tar.gz" | tar xz -git clone -b "$SET_USER" https://github.com/pgaudit/set_user.git +curl -sL "https://github.com/pgaudit/set_user/archive/$SET_USER_COMMT.tar.gz" | tar xz +# git clone -b "$SET_USER" https://github.com/pgaudit/set_user.git # pg17 support is not released curl -sL "https://github.com/powa-team/pg_stat_kcache/archive/$PG_STAT_KCACHE_COMMIT.tar.gz" | tar xz # pg17 support is not released git clone https://github.com/timescale/timescaledb.git @@ -166,6 +167,7 @@ for version in $DEB_PG_SUPPORTED_VERSIONS; do for n in bg_mon-${BG_MON_COMMIT} \ pg_auth_mon-${PG_AUTH_MON_COMMIT} \ + set_user-${SET_USER_COMMT} \ pg_permissions-${PG_PERMISSIONS_COMMIT} \ pg_profile-${PG_PROFILE} \ pg_stat_kcache-${PG_STAT_KCACHE_COMMIT} \