From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CC881138359 for ; Mon, 2 Nov 2020 23:41:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FEEAE0821; Mon, 2 Nov 2020 23:41:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 815D1E0821 for ; Mon, 2 Nov 2020 23:41:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45A06335DB2 for ; Mon, 2 Nov 2020 23:41:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 836C01DF for ; Mon, 2 Nov 2020 23:41:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1604360378.daeb59effa26ace52bf699229a1bc22afe8808fd.sam@gentoo> Subject: [gentoo-commits] proj/pambase:master commit in: templates/ X-VCS-Repository: proj/pambase X-VCS-Files: templates/system-auth.tpl X-VCS-Directories: templates/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: daeb59effa26ace52bf699229a1bc22afe8808fd X-VCS-Branch: master Date: Mon, 2 Nov 2020 23:41:27 +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: a9f2186c-5845-48c1-9177-4c0b1eda672f X-Archives-Hash: 7011b3159bb143aeb37e9bdebd19b9e5 commit: daeb59effa26ace52bf699229a1bc22afe8808fd Author: Sam James gentoo org> AuthorDate: Mon Nov 2 23:38:12 2020 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 2 23:39:38 2020 +0000 URL: https://gitweb.gentoo.org/proj/pambase.git/commit/?id=daeb59ef templates/system-auth.tpl: fix pam_cap realm This fixes the pam_cap realm which can only be auth. This is a regression from old pre-rewrite pambase. It was however exposed by the fixing of an incorrect module name (pam_libcap -> pam_cap) not long ago. Bug: https://bugs.gentoo.org/751946 Signed-off-by: Sam James gentoo.org> templates/system-auth.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/system-auth.tpl b/templates/system-auth.tpl index 6964e05..2f2fe76 100644 --- a/templates/system-auth.tpl +++ b/templates/system-auth.tpl @@ -48,7 +48,7 @@ session optional pam_ssh.so {% endif %} {% if libcap %} --session optional pam_cap.so +-auth optional pam_cap.so {% endif %} {% include "templates/system-session.tpl" %}