diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-07 22:44:26 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-13 11:54:56 +0200 |
commit | daa48c31797b27e3a0991d0db7406c951ebc86df (patch) | |
tree | accb8b1bfcbcf5d27b3b93b7223947090f8d8392 /doc/guix.texi | |
parent | 5fbbd29f747ce0483ad53cb4b83101fc8a5eeb44 (diff) | |
download | patches-daa48c31797b27e3a0991d0db7406c951ebc86df.tar patches-daa48c31797b27e3a0991d0db7406c951ebc86df.tar.gz |
services: 'mingetty-service' no longer takes monadic values.
* gnu/services/base.scm (mingetty-service): Change default value of
#:motd from a monadic value to a <plain-file>. Assume MOTD to be a
file-like object. Assume LOGIN-PROGRAM is a gexp or #f.
(%base-services): Use 'plain-file' instead of 'text-file' for motd.
* gnu/system/linux.scm (unix-pam-service): Update docstring to mention
that MOTD is a file-like object.
* doc/guix.texi (Base Services): Adjust 'mingetty-service' documentation
accordingly.
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 9ae91a8d1e..59d60bc263 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -5699,7 +5699,7 @@ automatically. @var{login-pause?} can be set to @code{#t} in conjunction with @var{auto-login}, in which case the user will have to press a key before the login shell is launched. -When true, @var{login-program} is a gexp or a monadic gexp denoting the name +When true, @var{login-program} is a gexp denoting the name of the log-in program (the default is the @code{login} program from the Shadow tool suite.) |