guix-commits
[Top][All Lists]
Advanced

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

02/09: system: pam: Change 'stop' method to return #f.


From: guix-commits
Subject: 02/09: system: pam: Change 'stop' method to return #f.
Date: Sat, 20 May 2023 19:17:11 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit f52020ea99f59eae3537a22bb23305da90af310b
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat May 20 00:39:25 2023 +0200

    system: pam: Change 'stop' method to return #f.
    
    When the 'stop' method returns a truth value, shepherd interprets it as
    potential failure and logs it.
    
    * gnu/system/pam.scm (pam-shepherd-service): Change 'stop' method to
    return #f.
---
 gnu/system/pam.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/system/pam.scm b/gnu/system/pam.scm
index adc40c975f..a035a92e25 100644
--- a/gnu/system/pam.scm
+++ b/gnu/system/pam.scm
@@ -395,7 +395,7 @@ started for PAM to work.")
             (provision '(pam))
             (requirement shepherd-requirements)
             (start #~(const #t))
-            (stop #~(const #t)))))))
+            (stop #~(const #f)))))))
 
 (define (extend-configuration initial extensions)
   "Extend INITIAL with NEW."



reply via email to

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