mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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:
parent
933051281f
commit
b5a70370f5
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue