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 EDBCE138334 for ; Sun, 24 Nov 2019 14:37:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3BF2CE0729; Sun, 24 Nov 2019 14:37:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 22687E0729 for ; Sun, 24 Nov 2019 14:37:45 +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 2D61934D2A8 for ; Sun, 24 Nov 2019 14:37:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE27A888 for ; Sun, 24 Nov 2019 14:37:41 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1574606141.dd74d9d2f442163353e56f4bd3cf4d0f24f6f1e4.zlogene@gentoo> Subject: [gentoo-commits] proj/pambase:master commit in: / X-VCS-Repository: proj/pambase X-VCS-Files: Makefile pambase-20191115.tar.xz system-auth.in X-VCS-Directories: / X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: dd74d9d2f442163353e56f4bd3cf4d0f24f6f1e4 X-VCS-Branch: master Date: Sun, 24 Nov 2019 14:37:41 +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: abe1b9a6-ad8a-47c7-9749-a3b4b036e7c6 X-Archives-Hash: e0396a014022e9e60e41aa5cf7f9fb9d commit: dd74d9d2f442163353e56f4bd3cf4d0f24f6f1e4 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Nov 24 14:35:41 2019 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Nov 24 14:35:41 2019 +0000 URL: https://gitweb.gentoo.org/proj/pambase.git/commit/?id=dd74d9d2 integrate libcap support Signed-off-by: Mikle Kolyada gentoo.org> Makefile | 4 ++++ pambase-20191115.tar.xz | Bin 0 -> 3240 bytes system-auth.in | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/Makefile b/Makefile index d036d84..94cc831 100644 --- a/Makefile +++ b/Makefile @@ -71,6 +71,10 @@ ifeq "$(MINIMAL)" "yes" PAMFLAGS += -DMINIMAL endif +ifeq "$(LIBCAP)" "yes" +PAMFLAGS += -DLIBCAP +endif + all: $(PAMD) install: $(PAMD) diff --git a/pambase-20191115.tar.xz b/pambase-20191115.tar.xz new file mode 100644 index 0000000..0b4f92e Binary files /dev/null and b/pambase-20191115.tar.xz differ diff --git a/system-auth.in b/system-auth.in index 4d588fb..02d0e50 100644 --- a/system-auth.in +++ b/system-auth.in @@ -43,3 +43,7 @@ session optional pam_ssh.so #if HAVE_ELOGIND -session optional pam_elogind.so #endif + +#if HAVE_LIBCAP +auth optional pam_cap.so +#endif