guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: guix-commits
Subject: 01/08: services: console-font: 'stop' method always returns #f.
Date: Fri, 17 Mar 2023 18:25:20 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit b5a70370f5ffd3cfa5e7d8f819475ca50d20fa7f
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Mar 17 10:02:42 2023 +0100

    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.
---
 gnu/services/base.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 1423ab6767..190bb8fe24 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -873,7 +873,7 @@ of console keymaps with @command{loadkeys}.")))
                                         "-C" #$device #$font))
                           ((0 71) #t)
                           (else #f))))
-             (stop #~(const #t))
+             (stop #~(const #f))
              (respawn? #f)))))
        tty+font))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]