Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package postgres-15-image for 
openSUSE:Factory checked in at 2026-04-28 11:57:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/postgres-15-image (Old)
 and      /work/SRC/openSUSE:Factory/.postgres-15-image.new.11940 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "postgres-15-image"

Tue Apr 28 11:57:03 2026 rev:58 rq:1349466 version:unknown

Changes:
--------
--- /work/SRC/openSUSE:Factory/postgres-15-image/postgres-15-image.changes      
2026-03-27 06:46:54.339535963 +0100
+++ 
/work/SRC/openSUSE:Factory/.postgres-15-image.new.11940/postgres-15-image.changes
   2026-04-28 12:00:43.916389511 +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.HW7hdk/_old  2026-04-28 12:00:44.740423635 +0200
+++ /var/tmp/diff_new_pack.HW7hdk/_new  2026-04-28 12:00:44.752424132 +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

Reply via email to