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:
Ludovic Courtès 2023-05-20 00:39:25 +02:00
parent 7d1d5e16da
commit f52020ea99
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -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."