mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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.
This commit is contained in:
parent
7d1d5e16da
commit
f52020ea99
1 changed files with 1 additions and 1 deletions
|
@ -395,7 +395,7 @@ (define (pam-shepherd-service config)
|
|||
(provision '(pam))
|
||||
(requirement shepherd-requirements)
|
||||
(start #~(const #t))
|
||||
(stop #~(const #t)))))))
|
||||
(stop #~(const #f)))))))
|
||||
|
||||
(define (extend-configuration initial extensions)
|
||||
"Extend INITIAL with NEW."
|
||||
|
|
Loading…
Reference in a new issue