guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#56797] [PATCH] gnu: services: fprintd: Add PAM configuration.


From: Maxime Devos
Subject: [bug#56797] [PATCH] gnu: services: fprintd: Add PAM configuration.
Date: Wed, 27 Jul 2022 18:12:17 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0


On 27-07-2022 17:57, Maya via Guix-patches via wrote:
Added a feature to fprintd-service-type to allow unlocking PAM modules (ie. gdm 
login, gnome polkit etc.) by fingerprint.

---

Documentation is missing (in the manual), so as-is, this new feature is hard to find.

Also, the manual required giving every top-level procedure a docstring IIRC,

  gnu/services/authentication.scm | 49 +++++++++++++++++++++++++++++++--
  1 file changed, 46 insertions(+), 3 deletions(-)

diff --git a/gnu/services/authentication.scm b/gnu/services/authentication.scm
index f7becdfafb..5737c15f4c 100644
--- a/gnu/services/authentication.scm
+++ b/gnu/services/authentication.scm
@@ -44,9 +44,50 @@ (define-module (gnu services authentication)
              nslcd-configuration?
              nslcd-service-type))

-(define-configuration fprintd-configuration
+(define-configuration/no-serialization fprintd-configuration
    (fprintd      (file-like fprintd)
-                "The fprintd package"))
+                "The fprintd package")
+  (unlock-gdm?
+   (boolean #t)
+   "Generate PAM configuration that unlocks gdm with fprintd.")
+  (unlock-other
+   (list '("polkit-1" "sddm")) ;; polkit-1 is the name of a PAM module for 
GNOME polkit
+   "List of other PAM modules that can be unlocked with fprintd.
+
+This depends on your desktop configuration. If you for example want GNOME 
prompts to be unlocked by fingerprint, you add @code{polkit-1} to this list. 
(This is enabled by default.)
+"))

This documentation is unclear -- does this field need to be set to the _name_ of the module, or to the _file name_ of the _shared library_ (as a file-like, not a direct file name, because of staging), or ...?  Also, the 'list' check can be more precise, IIRC there was some method for not just using list? but doing things like list-of-strings?.

Anyway, I don't really know PAM, but I've written some comments on the patch, hopefullt they are useful.

Attachment: OpenPGP_0x49E3EE22191725EE.asc
Description: OpenPGP public key

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]