guix-commits
[Top][All Lists]
Advanced

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

branch master updated: services: pam-mount: Add support for sddm login m


From: guix-commits
Subject: branch master updated: services: pam-mount: Add support for sddm login manager.
Date: Sun, 16 Jan 2022 18:15:07 -0500

This is an automated email from the git hooks/post-receive script.

glv pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 757be0e8af services: pam-mount: Add support for sddm login manager.
757be0e8af is described below

commit 757be0e8af0805ea354a7003a1e2b71475caf9ae
Author: Nick Zalutskiy <nick@const.fun>
AuthorDate: Sat Dec 18 14:57:08 2021 -0500

    services: pam-mount: Add support for sddm login manager.
    
    I noticed that pam_mount mounts work fine when loging into a textual
    session, but not when using sddm. This patch fixes this problem by
    ensuring that pam_mount.so is included in /etc/pam.d/sddm config file.
    
    * gnu/services/pam-mount.scm (pam-mount-pam-service): Add sddm to the list 
of
      pam services.
    
    Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
 gnu/services/pam-mount.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/services/pam-mount.scm b/gnu/services/pam-mount.scm
index 98611462c2..33649b0f7c 100644
--- a/gnu/services/pam-mount.scm
+++ b/gnu/services/pam-mount.scm
@@ -90,7 +90,7 @@
      (module #~(string-append #$pam-mount "/lib/security/pam_mount.so"))))
   (list (lambda (pam)
           (if (member (pam-service-name pam)
-                      '("login" "su" "slim" "gdm-password"))
+                      '("login" "su" "slim" "gdm-password" "sddm"))
               (pam-service
                (inherit pam)
                (auth (append (pam-service-auth pam)



reply via email to

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