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.master
parent
7d1d5e16da
commit
f52020ea99
|
@ -395,7 +395,7 @@ started for PAM to work.")
|
||||||
(provision '(pam))
|
(provision '(pam))
|
||||||
(requirement shepherd-requirements)
|
(requirement shepherd-requirements)
|
||||||
(start #~(const #t))
|
(start #~(const #t))
|
||||||
(stop #~(const #t)))))))
|
(stop #~(const #f)))))))
|
||||||
|
|
||||||
(define (extend-configuration initial extensions)
|
(define (extend-configuration initial extensions)
|
||||||
"Extend INITIAL with NEW."
|
"Extend INITIAL with NEW."
|
||||||
|
|
Reference in New Issue