Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package post-build-checks for openSUSE:Factory checked in at 2023-11-08 22:16:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old) and /work/SRC/openSUSE:Factory/.post-build-checks.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "post-build-checks" Wed Nov 8 22:16:29 2023 rev:115 rq:1123797 version:84.87+git20231107.61af484 Changes: -------- --- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes 2023-11-02 20:21:16.891419767 +0100 +++ /work/SRC/openSUSE:Factory/.post-build-checks.new.17445/post-build-checks.changes 2023-11-08 22:16:31.480521042 +0100 @@ -1,0 +2,6 @@ +Tue Nov 07 09:34:30 UTC 2023 - dmuel...@suse.com + +- Update to version 84.87+git20231107.61af484: + * Add abuild to trusted group without using usermod + +------------------------------------------------------------------- Old: ---- post-build-checks-84.87+git20231031.bfa988b.tar.xz New: ---- post-build-checks-84.87+git20231107.61af484.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ post-build-checks.spec ++++++ --- /var/tmp/diff_new_pack.3ERMCY/_old 2023-11-08 22:16:32.140545288 +0100 +++ /var/tmp/diff_new_pack.3ERMCY/_new 2023-11-08 22:16:32.140545288 +0100 @@ -20,7 +20,7 @@ Summary: post checks for build after rpms have been created License: GPL-2.0-or-later Group: Development/Tools/Building -Version: 84.87+git20231031.bfa988b +Version: 84.87+git20231107.61af484 Release: 0 PreReq: aaa_base PreReq: permissions ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.3ERMCY/_old 2023-11-08 22:16:32.176546611 +0100 +++ /var/tmp/diff_new_pack.3ERMCY/_new 2023-11-08 22:16:32.176546611 +0100 @@ -4,6 +4,6 @@ <param name="changesrevision">9a72096c56008474c812a087e25d6e84eb357297</param></service> <service name="tar_scm"> <param name="url">https://github.com/openSUSE/post-build-checks.git</param> - <param name="changesrevision">bfa988bcbab960ed96abd39edd3d40dbd6a0ae20</param></service></servicedata> + <param name="changesrevision">61af484af014efb4ef040ac50974c81b62fa7625</param></service></servicedata> (No newline at EOF) ++++++ post-build-checks-84.87+git20231031.bfa988b.tar.xz -> post-build-checks-84.87+git20231107.61af484.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/post-build-checks-84.87+git20231031.bfa988b/finalize-system/01-add_abuild_user_to_trusted_group new/post-build-checks-84.87+git20231107.61af484/finalize-system/01-add_abuild_user_to_trusted_group --- old/post-build-checks-84.87+git20231031.bfa988b/finalize-system/01-add_abuild_user_to_trusted_group 2023-10-31 13:57:00.000000000 +0100 +++ new/post-build-checks-84.87+git20231107.61af484/finalize-system/01-add_abuild_user_to_trusted_group 2023-11-07 10:34:16.000000000 +0100 @@ -15,4 +15,9 @@ } -id abuild >/dev/null 2>/dev/null && usermod -G trusted -a abuild || true +if id abuild >/dev/null 2>/dev/null; then + # add abuild to trusted auxiliary group + if ! id -nG abuild 2> /dev/null | grep -q trusted; then + sed -i -E -e 's|trusted:([^:]+):([^:]+):(.*)|trusted:\1:\2:abuild,\3|' /etc/group + fi +fi