diff options
author | Giacomo Leidi <goodoldpaul@autistici.org> | 2024-08-23 13:40:54 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-18 18:32:40 +0100 |
commit | 3eb720bd0b4bab233918f979bb51b58437db06ad (patch) | |
tree | 68da96731376e7bd4d9aa687f4c9d36199273875 /gnu | |
parent | a1ecd7f56c4ffadc49d5501a0df7f4c4556120c2 (diff) | |
download | guix-3eb720bd0b4bab233918f979bb51b58437db06ad.tar.gz guix-3eb720bd0b4bab233918f979bb51b58437db06ad.zip |
system: pam: Export pam records predicates.
* gnu/system/pam.scm: Export pam-service-name?, pam-entry? and pam-limits-entry?.
Change-Id: I609acfcaae85b4969dc385b72b307e470f5a246e
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system/pam.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/system/pam.scm b/gnu/system/pam.scm index a035a92e25..07b84b04ef 100644 --- a/gnu/system/pam.scm +++ b/gnu/system/pam.scm @@ -34,6 +34,7 @@ #:use-module ((guix utils) #:select (%current-system)) #:use-module (gnu packages linux) #:export (pam-service + pam-service? pam-service-name pam-service-account pam-service-auth @@ -41,11 +42,13 @@ pam-service-session pam-entry + pam-entry? pam-entry-control pam-entry-module pam-entry-arguments pam-limits-entry + pam-limits-entry? pam-limits-entry-domain pam-limits-entry-type pam-limits-entry-item |