civodul pushed a commit to branch master
in repository guix.

commit c970edad23d07fea263ecfd54df47e2ae9c1a9fd
Author: Josselin Poiret <[email protected]>
AuthorDate: Tue May 9 18:45:08 2023 +0200

    services: elogind: Add elogind as a shepherd PAM requirement.
    
    * gnu/services/desktop.scm (pam-extension-procedure): Add the elogind 
shepherd
    requirement to the PAM extension.
    
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/services/desktop.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm
index 6b1b21cf80..64eac1117d 100644
--- a/gnu/services/desktop.scm
+++ b/gnu/services/desktop.scm
@@ -1192,7 +1192,8 @@ seats.)"
           (lambda (pam)
             (pam-service
              (inherit pam)
-             (session (cons pam-elogind (pam-service-session pam)))))))))
+             (session (cons pam-elogind (pam-service-session pam))))))
+         (shepherd-requirements '(elogind)))))
 
 (define (elogind-shepherd-service config)
   "Return a Shepherd service to start elogind according to @var{config}."

Reply via email to