diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-02-25 18:57:49 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-03-03 17:55:32 +0100 |
commit | ad665a38fc18ed7a6b8efb09086713b0e73e3781 (patch) | |
tree | 8c7e2a5eef39cf595beac9b41d48c76cb8539aa8 /doc | |
parent | 6dd635b4cf7a65560056c1089982fe00f73e6468 (diff) | |
download | guix-ad665a38fc18ed7a6b8efb09086713b0e73e3781.tar.gz |
services: base: Deprecate 'mingetty-service' procedure.
* doc/guix.texi (Base Services): Replace mingetty-service with mingetty-service-type. * gnu/services/base.scm (mingetty-service): Deprecate procedure. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 0d205555c1..06f77639ce 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -18123,18 +18123,17 @@ the 'root' account has just been created. @end table @end deftp -@deffn {Scheme Procedure} mingetty-service @var{config} -Return a service to run mingetty according to @var{config}, a -@code{<mingetty-configuration>} object, which specifies the tty to run, among -other things. -@end deffn +@defvar mingetty-service-type +Type of the service that runs Mingetty, an implementation of the +virtual console log-in. The value for this service is a +@code{<mingetty-configuration>} object. +@end defvar @deftp {Data Type} mingetty-configuration -This is the data type representing the configuration of Mingetty, which -provides the default implementation of virtual console log-in. +Data type representing the configuration of Mingetty, which specifies +the tty to run, among other things. @table @asis - @item @code{tty} The name of the console this Mingetty runs on---e.g., @code{"tty1"}. |