diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-21 22:51:55 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-21 22:52:17 +0100 |
commit | f4391bec000fbc218becda950bb2543c659d95be (patch) | |
tree | b68d5dec77a96d102ee5bb1ba781d0d78250c9a0 /doc | |
parent | b977cd2b8e093526eae957612b0cda2ac55960ce (diff) | |
download | patches-f4391bec000fbc218becda950bb2543c659d95be.tar patches-f4391bec000fbc218becda950bb2543c659d95be.tar.gz |
doc: Fix typos regarding 'lsh-service'.
Reported by Adam Pribyl <pribyl@lowlevel.cz>.
* doc/guix.texi (Using the Configuration System): Use #:root-login?, not
#:allow-root-login?, in example.
(Networking Services): Fix module name for ssh.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 569790065f..c0b9668760 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -3415,7 +3415,7 @@ kernel, initial RAM disk, and boot loader looks like this: (comment "Bob's sister") (home-directory "/home/alice")))) (packages (cons emacs %base-packages)) - (services (cons (lsh-service #:port 2222 #:allow-root-login? #t) + (services (cons (lsh-service #:port 2222 #:root-login? #t) %base-services))) @end lisp @@ -4016,7 +4016,7 @@ In addition, @var{extra-settings} specifies a string to append to the configuration file. @end deffn -Furthermore, @code{(gnu system ssh)} provides the following service. +Furthermore, @code{(gnu services ssh)} provides the following service. @deffn {Monadic Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @ [#:interfaces '()] [#:port-number 22] @ |