[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."
- branch master updated (bd7b795aeb -> 7ddc239fc3), guix-commits, 2023/05/20
- 04/09: services: root-file-system: Remove reference to 'stop-logging'., guix-commits, 2023/05/20
- 01/09: doc: Clarify instructions for hibernation on a swap file., guix-commits, 2023/05/20
- 02/09: system: pam: Change 'stop' method to return #f.,
guix-commits <=
- 07/09: gnu: guile-dsv: Update to 0.6.0., guix-commits, 2023/05/20
- 05/09: services: Transient inetd services inherit requirements., guix-commits, 2023/05/20
- 06/09: gnu: guile-netlink: Update to 1.1.2., guix-commits, 2023/05/20
- 08/09: gnu: cagebreak: Update to 2.1.2., guix-commits, 2023/05/20
- 09/09: gnu: Add labwc., guix-commits, 2023/05/20
- 03/09: services: agetty: 'stop' method does nothing when running is 'idle., guix-commits, 2023/05/20