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
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

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)))