1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

doc: Use OpenSSH instead of lsh in bare-bones template.

* gnu/system/examples/bare-bones.tmpl (services): Use openssh-service-type
instead of lsh-service.
This commit is contained in:
Leo Famulari
2017-04-08 21:38:54 -04:00
parent 0ee59b81c7
commit eea2f45369

View File

@@ -43,5 +43,7 @@
;; Add services to the baseline: a DHCP client and
;; an SSH server.
(services (cons* (dhcp-client-service)
(lsh-service #:port-number 2222)
(service openssh-service-type
(openssh-configuration
(port-number 2222)))
%base-services)))