exclude repmgr to find problem

This commit is contained in:
Bernhard Radermacher
2026-02-18 10:52:09 +01:00
parent 31bc8ea15b
commit 28fe62eeb7
2 changed files with 5 additions and 5 deletions

View File

@@ -105,10 +105,10 @@ RUN set -ex; \
"postgresql-$PG_MAJOR=$PG_VERSION" \
"postgresql-server-dev-$PG_MAJOR=$PG_VERSION" \
; \
cp /usr/include/postgresql/15/server/pg_config.h /usr/include/postgresql/; \
curl https://github.com/EnterpriseDB/repmgr/releases/download/v5.5.0/repmgr-5.5.0.tar.gz | tar -xzC "$tempDir"; \
cd repmgr; \
./configure && make -j "$nproc" install; \
# cp /usr/include/postgresql/15/server/pg_config.h /usr/include/postgresql/; \
# curl https://github.com/EnterpriseDB/repmgr/releases/download/v5.5.0/repmgr-5.5.0.tar.gz | tar -xzC "$tempDir"; \
# cd repmgr; \
# ./configure && make -j "$nproc" install; \
cd /; \
rm -rf /var/lib/apt/lists/*; \
apt-get purge -y --auto-remove; \

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -Eeo pipefail
# TODO swap to -Eeuo pipefail above (after handling all potentially-unset variables)
# swap to -Eeuo pipefail above (after handling all potentially-unset variables)
# usage: file_env VAR [DEFAULT]
# ie: file_env 'XYZ_DB_PASSWORD' 'example'