Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package postgres-14-image for openSUSE:Factory checked in at 2026-04-28 11:57:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/postgres-14-image (Old) and /work/SRC/openSUSE:Factory/.postgres-14-image.new.11940 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "postgres-14-image" Tue Apr 28 11:57:05 2026 rev:57 rq:1349468 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/postgres-14-image/postgres-14-image.changes 2026-03-27 06:46:53.307493363 +0100 +++ /work/SRC/openSUSE:Factory/.postgres-14-image.new.11940/postgres-14-image.changes 2026-04-28 12:00:47.492537602 +0200 @@ -1,0 +2,5 @@ +Sun Apr 26 20:49:59 UTC 2026 - SUSE Update Bot <[email protected]> + +- entrypoint update from git + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ docker-entrypoint.sh ++++++ --- /var/tmp/diff_new_pack.fVwVuE/_old 2026-04-28 12:00:48.240568579 +0200 +++ /var/tmp/diff_new_pack.fVwVuE/_new 2026-04-28 12:00:48.244568746 +0200 @@ -252,7 +252,12 @@ OLD_DATABASES+=( "$d" ) fi done - if [ "${#OLD_DATABASES[@]}" -eq 0 ] && [ "$PG_MAJOR" -ge 18 ] && mountpoint -q /var/lib/postgresql/data; then + if [ "${#OLD_DATABASES[@]}" -eq 0 ] && [ "$PG_MAJOR" -ge 18 ] && { + # in BusyBox, "mountpoint" only checks dev vs ino (https://github.com/tianon/mirror-busybox/blob/be7d1b7b1701d225379bc1665487ed0871b592a5/util-linux/mountpoint.c#L78) which will notably miss bind mounts entirely (which almost all Docker volume mounts are) + # coreutils checks /proc/self/mountinfo, so we have a fallback to mimic that and directly check "/proc/self/mountinfo" to catch that case + mountpoint -q /var/lib/postgresql/data \ + || awk '$5 == "/var/lib/postgresql/data" { found = 1 } END { exit !found }' /proc/self/mountinfo + }; then OLD_DATABASES+=( '/var/lib/postgresql/data (unused mount/volume)' ) fi fi
