From f52020ea99f59eae3537a22bb23305da90af310b Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 20 May 2023 00:39:25 +0200 Subject: 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(-) (limited to 'gnu/system') 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." -- cgit v1.2.3