summaryrefslogtreecommitdiff
path: root/gnu/system/examples/bare-bones.tmpl
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2017-04-08 21:38:54 -0400
committerLeo Famulari <leo@famulari.name>2017-04-12 11:42:52 -0400
commiteea2f45369f49d244e99257fcc71a9f367fdf0fd (patch)
tree8d24ddcae5368dbfef53c66ef8143a8f37297fca /gnu/system/examples/bare-bones.tmpl
parent0ee59b81c739d08863363e7f901e130135617b23 (diff)
downloadguix-patches-eea2f45369f49d244e99257fcc71a9f367fdf0fd.tar
guix-patches-eea2f45369f49d244e99257fcc71a9f367fdf0fd.tar.gz
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.
Diffstat (limited to 'gnu/system/examples/bare-bones.tmpl')
-rw-r--r--gnu/system/examples/bare-bones.tmpl4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/system/examples/bare-bones.tmpl b/gnu/system/examples/bare-bones.tmpl
index 222ddda579..f7b8823d4f 100644
--- a/gnu/system/examples/bare-bones.tmpl
+++ b/gnu/system/examples/bare-bones.tmpl
@@ -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)))