[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: doc: Use OpenSSH instead of lsh in bare-bones template.
From: |
Leo Famulari |
Subject: |
01/01: doc: Use OpenSSH instead of lsh in bare-bones template. |
Date: |
Wed, 12 Apr 2017 11:45:31 -0400 (EDT) |
lfam pushed a commit to branch master
in repository guix.
commit eea2f45369f49d244e99257fcc71a9f367fdf0fd
Author: Leo Famulari <address@hidden>
Date: Sat Apr 8 21:38:54 2017 -0400
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.
---
gnu/system/examples/bare-bones.tmpl | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/system/examples/bare-bones.tmpl
b/gnu/system/examples/bare-bones.tmpl
index 222ddda..f7b8823 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)))