Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kea-image for openSUSE:Factory checked in at 2026-02-03 21:34:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kea-image (Old) and /work/SRC/openSUSE:Factory/.kea-image.new.1995 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kea-image" Tue Feb 3 21:34:32 2026 rev:14 rq:1330752 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/kea-image/kea-image.changes 2026-01-02 14:28:58.765593508 +0100 +++ /work/SRC/openSUSE:Factory/.kea-image.new.1995/kea-image.changes 2026-02-03 21:35:30.054702342 +0100 @@ -1,0 +2,5 @@ +Tue Feb 3 09:37:46 UTC 2026 - SUSE Update Bot <[email protected]> + +- add systemd-tmpfiles to create necessary directories outside /usr + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.bZTAnW/_old 2026-02-03 21:35:30.990741681 +0100 +++ /var/tmp/diff_new_pack.bZTAnW/_new 2026-02-03 21:35:30.994741849 +0100 @@ -19,13 +19,19 @@ #!BuildTag: opensuse/kea:3.0 #!BuildTag: opensuse/kea:latest -FROM opensuse/tumbleweed:latest +FROM opensuse/bci/bci-micro:latest AS target +FROM opensuse/tumbleweed:latest AS builder +COPY --from=target / /target RUN set -euo pipefail; \ - zypper -n install --no-recommends kea util-linux + export PERMCTL_ALLOW_INSECURE_MODE_IF_NO_PROC=1; \ + zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends kea util-linux + +RUN set -euo pipefail; zypper -n install --no-recommends systemd && \ + systemd-tmpfiles --create --root /target # cleanup logs and temporary files -RUN set -euo pipefail; zypper -n clean -a; \ +RUN set -euo pipefail; zypper -n --installroot /target clean -a; \ rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}; \ rm -rf {/target,}/run/*; \ rm -f {/target,}/etc/{shadow-,group-,passwd-,.pwd.lock}; \ @@ -34,8 +40,9 @@ command -v zypper >/dev/null 2>&1 || rm -f /var/lib/zypp/AutoInstalled # set the day of last password change to empty -RUN set -euo pipefail; sed -i 's/^\([^:]*:[^:]*:\)[^:]*\(:.*\)$/\1\2/' /etc/shadow - +RUN set -euo pipefail; sed -i 's/^\([^:]*:[^:]*:\)[^:]*\(:.*\)$/\1\2/' /target/etc/shadow +FROM opensuse/bci/bci-micro:latest +COPY --from=builder /target / # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.application.kea LABEL org.opencontainers.image.title="openSUSE Tumbleweed Kea DHCP Server"
