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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 03861158089 for ; Mon, 13 Nov 2023 06:20:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14DB72BC01B; Mon, 13 Nov 2023 06:20:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id E5AAA2BC014 for ; Mon, 13 Nov 2023 06:20:55 +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 03BD0335D4B for ; Mon, 13 Nov 2023 06:20:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50404136C for ; Mon, 13 Nov 2023 06:20:53 +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: <1699856451.b599daf14eda0a238265f11d239c4c772c345fbd.sam@gentoo> Subject: [gentoo-commits] proj/pambase:master commit in: / X-VCS-Repository: proj/pambase X-VCS-Files: README.md X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b599daf14eda0a238265f11d239c4c772c345fbd X-VCS-Branch: master Date: Mon, 13 Nov 2023 06:20:53 +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: 72a8579b-c783-4ce2-81b3-5586d8dacc2a X-Archives-Hash: 0f7bc2e77e04b6542b345d0414ab3faf commit: b599daf14eda0a238265f11d239c4c772c345fbd Author: Aliaksei Urbanski gmail com> AuthorDate: Wed Nov 8 15:08:15 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 13 06:20:51 2023 +0000 URL: https://gitweb.gentoo.org/proj/pambase.git/commit/?id=b599daf1 Add README.md Closes: https://github.com/gentoo/pambase/pull/18 Signed-off-by: Sam James gentoo.org> README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md new file mode 100644 index 0000000..59f4ecd --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# pambase + +[PAM](https://wiki.gentoo.org/wiki/PAM) base configuration files. + +This repository contains a small [Python](https://wiki.gentoo.org/wiki/Python) script that renders `PAM` configuration templates for [Gentoo Linux](https://www.gentoo.org). + +## Dependencies + +`pambase` depends on [jinja](https://packages.gentoo.org/packages/dev-python/jinja). + +## Testing + +In order to perform tests, run [tox](https://packages.gentoo.org/packages/dev-python/tox). + +Alternatively, you can run tests with [Docker](https://wiki.gentoo.org/wiki/Docker): +```sh +docker run --rm -it $(docker build -q .) +```