diff options
author | Leo Famulari <leo@famulari.name> | 2017-04-08 21:38:54 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-04-12 11:42:52 -0400 |
commit | eea2f45369f49d244e99257fcc71a9f367fdf0fd (patch) | |
tree | 8d24ddcae5368dbfef53c66ef8143a8f37297fca /gnu | |
parent | 0ee59b81c739d08863363e7f901e130135617b23 (diff) | |
download | guix-eea2f45369f49d244e99257fcc71a9f367fdf0fd.tar guix-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')
-rw-r--r-- | gnu/system/examples/bare-bones.tmpl | 4 |
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))) |