services: console-font: 'stop' method always returns #f.

The 'stop' method of Shepherd services is supposed to return #f on
success.

* gnu/services/base.scm (console-font-shepherd-services): 'stop' method
returns #f.
This commit is contained in:
Ludovic Courtès 2023-03-17 10:02:42 +01:00
parent 933051281f
commit b5a70370f5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -873,7 +873,7 @@ (define (console-font-shepherd-services tty+font)
"-C" #$device #$font))
((0 71) #t)
(else #f))))
(stop #~(const #t))
(stop #~(const #f))
(respawn? #f)))))
tty+font))