From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D50E41581B9 for ; Wed, 01 Oct 2025 20:44:06 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id BCD73340E06 for ; Wed, 01 Oct 2025 20:44:06 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A18781103CB; Wed, 01 Oct 2025 20:44:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 974001103CB for ; Wed, 01 Oct 2025 20:44:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5080D340BD3 for ; Wed, 01 Oct 2025 20:44:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B668639FD for ; Wed, 01 Oct 2025 20:44:03 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1759351387.048e077ddc9a2c4e607da1f61d19ceffcf7f9ada.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/pam/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/pam/pam-1.7.1-r1.ebuild sys-libs/pam/pam-1.7.1.ebuild X-VCS-Directories: sys-libs/pam/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 048e077ddc9a2c4e607da1f61d19ceffcf7f9ada X-VCS-Branch: master Date: Wed, 01 Oct 2025 20:44:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a74b5126-bfa1-4855-bb33-551cce8432c0 X-Archives-Hash: 5ea7810b9bcf6bc072509766479aaaf7 commit: 048e077ddc9a2c4e607da1f61d19ceffcf7f9ada Author: Mike Gilbert gentoo org> AuthorDate: Wed Oct 1 20:20:24 2025 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Oct 1 20:43:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=048e077d sys-libs/pam: give unix_chkpwd CAP_DAC_READ_SEARCH CAP_DAC_OVERRIDE is overkill; we only need read access to /etc/shadow. Closes: https://bugs.gentoo.org/963110 Signed-off-by: Mike Gilbert gentoo.org> sys-libs/pam/{pam-1.7.1.ebuild => pam-1.7.1-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/pam/pam-1.7.1.ebuild b/sys-libs/pam/pam-1.7.1-r1.ebuild similarity index 99% rename from sys-libs/pam/pam-1.7.1.ebuild rename to sys-libs/pam/pam-1.7.1-r1.ebuild index e8ad131b262c..d580d7da9dff 100644 --- a/sys-libs/pam/pam-1.7.1.ebuild +++ b/sys-libs/pam/pam-1.7.1-r1.ebuild @@ -187,5 +187,5 @@ pkg_postinst() { # The pam_unix module needs to check the password of the user which requires # read access to /etc/shadow only. - fcaps -m u+s cap_dac_override sbin/unix_chkpwd + fcaps -m u+s cap_dac_read_search sbin/unix_chkpwd }