Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package account-utils for openSUSE:Factory checked in at 2026-03-27 16:51:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/account-utils (Old) and /work/SRC/openSUSE:Factory/.account-utils.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "account-utils" Fri Mar 27 16:51:25 2026 rev:8 rq:1343150 version:1.1.0+git20260327.39b8181 Changes: -------- --- /work/SRC/openSUSE:Factory/account-utils/account-utils.changes 2026-03-14 22:22:46.706083091 +0100 +++ /work/SRC/openSUSE:Factory/.account-utils.new.8177/account-utils.changes 2026-03-27 16:54:08.915105258 +0100 @@ -1,0 +2,9 @@ +Fri Mar 27 08:53:48 UTC 2026 - Thorsten Kukuk <[email protected]> + +- Update to version 1.1.0+git20260327.39b8181: + * pam_unix_ng: don't print authentication errors on console + * [email protected]: add Documentation= field + * pam_unix_ng.8: fix typo found by Lintian +- Use without_restart for *.socket units + +------------------------------------------------------------------- Old: ---- account-utils-1.1.0+git20260313.e9be3c9.tar.xz New: ---- account-utils-1.1.0+git20260327.39b8181.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ account-utils.spec ++++++ --- /var/tmp/diff_new_pack.TpbSZ4/_old 2026-03-27 16:54:09.467128366 +0100 +++ /var/tmp/diff_new_pack.TpbSZ4/_new 2026-03-27 16:54:09.467128366 +0100 @@ -22,7 +22,7 @@ %define lname libpwaccess0 Name: account-utils -Version: 1.1.0+git20260313.e9be3c9 +Version: 1.1.0+git20260327.39b8181 Release: 0 Summary: Service for authentication and account management License: GPL-2.0-or-later AND BSD-2-Clause AND LGPL-2.1-or-later @@ -91,7 +91,7 @@ fi %postun -%service_del_postun pwaccessd.socket pwupdd.socket newidmapd.socket +%service_del_postun_without_restart pwaccessd.socket pwupdd.socket newidmapd.socket if [ "$1" -eq 0 ]; then pam-config -d --unix_ng || : fi ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.TpbSZ4/_old 2026-03-27 16:54:09.515130376 +0100 +++ /var/tmp/diff_new_pack.TpbSZ4/_new 2026-03-27 16:54:09.519130543 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/thkukuk/account-utils.git</param> -<param name="changesrevision">e9be3c99917ae7b15232961ab4058bc76166225e</param></service></servicedata> +<param name="changesrevision">39b8181aa5752cc245635cf47131fec8f068b45d</param></service></servicedata> (No newline at EOF) ++++++ account-utils-1.1.0+git20260313.e9be3c9.tar.xz -> account-utils-1.1.0+git20260327.39b8181.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/account-utils-1.1.0+git20260313.e9be3c9/man/pam_unix_ng.8.xml new/account-utils-1.1.0+git20260327.39b8181/man/pam_unix_ng.8.xml --- old/account-utils-1.1.0+git20260313.e9be3c9/man/pam_unix_ng.8.xml 2026-03-13 15:05:24.000000000 +0100 +++ new/account-utils-1.1.0+git20260327.39b8181/man/pam_unix_ng.8.xml 2026-03-27 09:44:27.000000000 +0100 @@ -23,7 +23,7 @@ <refsect1> <title>DESCRIPTION</title> <para> - This is a standard UNIX authentication PAM module which delegates tasks requiring access to <filename>/etc/shadow</filename> to <citerefentry><refentrytitle>pwaccessd</refentrytitle><manvolnum>8</manvolnum></citerefentry>, which allows to use this module in environments without setuid binaries. If pwaccessd is not running, it tries at first to start it via D-Bus. If this fails, it tries to read the local files as fallback itself. + This is a standard UNIX authentication PAM module which delegates tasks requiring access to <filename>/etc/shadow</filename> to <citerefentry><refentrytitle>pwaccessd</refentrytitle><manvolnum>8</manvolnum></citerefentry>, which allows one to use this module in environments without setuid binaries. If pwaccessd is not running, it tries at first to start it via D-Bus. If this fails, it tries to read the local files as fallback itself. </para> </refsect1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/account-utils-1.1.0+git20260313.e9be3c9/src/pam_unix_ng-auth.c new/account-utils-1.1.0+git20260327.39b8181/src/pam_unix_ng-auth.c --- old/account-utils-1.1.0+git20260313.e9be3c9/src/pam_unix_ng-auth.c 2026-03-13 15:05:24.000000000 +0100 +++ new/account-utils-1.1.0+git20260327.39b8181/src/pam_unix_ng-auth.c 2026-03-27 09:44:27.000000000 +0100 @@ -110,8 +110,9 @@ } r = authenticate_user(pamh, cfg->ctrl, user, strempty(password), &authenticated, &error); - if (error) - pam_error(pamh, "%s", error); + if (error && (cfg->ctrl & ARG_DEBUG)) + pam_syslog(pamh, LOG_DEBUG, "authenticate_user(%s) failed: %s", + user, error); if (r != PAM_SUCCESS) return r; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/account-utils-1.1.0+git20260313.e9be3c9/units/[email protected] new/account-utils-1.1.0+git20260327.39b8181/units/[email protected] --- old/account-utils-1.1.0+git20260313.e9be3c9/units/[email protected] 2026-03-13 15:05:24.000000000 +0100 +++ new/account-utils-1.1.0+git20260327.39b8181/units/[email protected] 2026-03-27 09:44:27.000000000 +0100 @@ -1,5 +1,6 @@ [Unit] Description=Daemon to update passwd and shadow entries +Documentation=man:pwupdd(8) After=local-fs.target [Service]
