Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package init-image for openSUSE:Factory checked in at 2025-10-21 11:16:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/init-image (Old) and /work/SRC/openSUSE:Factory/.init-image.new.18484 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "init-image" Tue Oct 21 11:16:27 2025 rev:38 rq:1312586 version:%OS_VERSION_ID_SP%.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/init-image/init-image.changes 2025-09-29 16:38:45.858874665 +0200 +++ /work/SRC/openSUSE:Factory/.init-image.new.18484/init-image.changes 2025-10-21 11:18:32.856157610 +0200 @@ -1,0 +2,5 @@ +Mon Oct 20 12:53:40 UTC 2025 - SUSE Update Bot <[email protected]> + +- remove password change date from /etc/shadow to make the file reproducible + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.FSmkXA/_old 2025-10-21 11:18:33.320177120 +0200 +++ /var/tmp/diff_new_pack.FSmkXA/_new 2025-10-21 11:18:33.324177287 +0200 @@ -24,6 +24,15 @@ RUN set -euo pipefail; \ zypper -n install --no-recommends systemd systemd-default-settings-branding-openSUSE gzip openSUSE-release openSUSE-release-appliance-docker + +RUN set -euo pipefail; install -d -m 0755 /etc/systemd/system.conf.d/ \ + && printf "[Manager]\nLogColor=no" > \ + /etc/systemd/system.conf.d/01-sle-bci-nocolor.conf +RUN set -euo pipefail; systemctl disable [email protected] +RUN set -euo pipefail; useradd --no-create-home --uid 497 systemd-coredump + + +# cleanup logs and temporary files RUN set -euo pipefail; zypper -n clean -a; \ rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}; \ rm -rf {/target,}/run/*; \ @@ -32,6 +41,8 @@ rm -f {/target,}/var/cache/ldconfig/aux-cache; \ 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 # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.bci.init @@ -53,11 +64,5 @@ LABEL usage="This container should only be used to build containers for daemons. Add your packages and enable services using systemctl." CMD ["/usr/lib/systemd/systemd"] -RUN set -euo pipefail; install -d -m 0755 /etc/systemd/system.conf.d/ \ - && printf "[Manager]\nLogColor=no" > \ - /etc/systemd/system.conf.d/01-sle-bci-nocolor.conf -RUN set -euo pipefail; systemctl disable [email protected] -RUN set -euo pipefail; useradd --no-create-home --uid 497 systemd-coredump - HEALTHCHECK --interval=5s --timeout=5s --retries=5 CMD ["/usr/bin/systemctl", "is-active", "multi-user.target"]
