3
4
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: %base-services: Use *getty-service-type.

* gnu/services/base.scm (%base-services): Replace agetty-service with
agetty-service-type, mingetty-service with mingetty-service-type.
This commit is contained in:
Efraim Flashner 2019-01-20 15:25:45 +02:00
parent 178bce41d8
commit 76a2b2db1a
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2305,23 +2305,23 @@ to handle."
(cons tty %default-console-font))
'("tty1" "tty2" "tty3" "tty4" "tty5" "tty6")))
(agetty-service (agetty-configuration
(extra-options '("-L")) ; no carrier detect
(term "vt100")
(tty #f))) ; automatic
(service agetty-service-type (agetty-configuration
(extra-options '("-L")) ; no carrier detect
(term "vt100")
(tty #f))) ; automatic
(mingetty-service (mingetty-configuration
(tty "tty1")))
(mingetty-service (mingetty-configuration
(tty "tty2")))
(mingetty-service (mingetty-configuration
(tty "tty3")))
(mingetty-service (mingetty-configuration
(tty "tty4")))
(mingetty-service (mingetty-configuration
(tty "tty5")))
(mingetty-service (mingetty-configuration
(tty "tty6")))
(service mingetty-service-type (mingetty-configuration
(tty "tty1")))
(service mingetty-service-type (mingetty-configuration
(tty "tty2")))
(service mingetty-service-type (mingetty-configuration
(tty "tty3")))
(service mingetty-service-type (mingetty-configuration
(tty "tty4")))
(service mingetty-service-type (mingetty-configuration
(tty "tty5")))
(service mingetty-service-type (mingetty-configuration
(tty "tty6")))
(service static-networking-service-type
(list (static-networking (interface "lo")