Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package postgres-18-image for openSUSE:Factory checked in at 2026-04-28 11:56:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/postgres-18-image (Old) and /work/SRC/openSUSE:Factory/.postgres-18-image.new.11940 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "postgres-18-image" Tue Apr 28 11:56:52 2026 rev:12 rq:1349462 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/postgres-18-image/postgres-18-image.changes 2026-03-27 06:46:57.279657326 +0100 +++ /work/SRC/openSUSE:Factory/.postgres-18-image.new.11940/postgres-18-image.changes 2026-04-28 12:00:39.088189569 +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.kG6NN8/_old 2026-04-28 12:00:39.856221376 +0200 +++ /var/tmp/diff_new_pack.kG6NN8/_new 2026-04-28 12:00:39.860221541 +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
