diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2022-02-25 17:13:53 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2022-02-25 17:13:55 +0100 |
commit | 07c3a439555113bdd0bd416265221063d263f44c (patch) | |
tree | c01b5d64d55dc2a356da971d8a1b87b617874150 /gnu/services | |
parent | fcb6cab62149fd46d9fe496b91cc019a43774a43 (diff) | |
download | guix-07c3a439555113bdd0bd416265221063d263f44c.tar.gz |
agetty-shepherd-service: Rename console agetty to "term-console" for clarity.
* gnu/services/base.scm (agetty-shepherd-service)[provision]: Rename console agetty to "term-console".
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/base.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 53db6bdca5..463f034305 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -931,7 +931,7 @@ to use as the tty. This is primarily useful for headless systems." (list (shepherd-service (documentation "Run agetty on a tty.") - (provision (list (symbol-append 'term- (string->symbol (or tty "auto"))))) + (provision (list (symbol-append 'term- (string->symbol (or tty "console"))))) ;; Since the login prompt shows the host name, wait for the 'host-name' ;; service to be done. Also wait for udev essentially so that the tty |