Skip to content
Snippets Groups Projects
Unverified Commit a043b5b8 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

services: mingetty: Use '--nohangup'.

See the discussion at
<https://lists.gnu.org/archive/html/guix-devel/2018-07/msg00049.html>.

* gnu/services/base.scm (mingetty-shepherd-service): Pass "--nohangup"
to mingetty.
parent 9fd87724
No related branches found
No related tags found
No related merge requests found
......@@ -1113,7 +1113,14 @@ (define mingetty-shepherd-service
(start #~(make-forkexec-constructor
(list #$(file-append mingetty "/sbin/mingetty")
"--noclear" #$tty
"--noclear"
;; Avoiding 'vhangup' allows us to avoid 'setfont'
;; errors down the path where various ioctls get
;; EIO--see 'hung_up_tty_ioctl' in driver/tty/tty_io.c
;; in Linux.
"--nohangup" #$tty
#$@(if auto-login
#~("--autologin" #$auto-login)
#~())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment