summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2017-04-17 22:49:23 +0200
committerLudovic Courtès <ludo@gnu.org>2017-05-20 10:16:37 +0200
commitf3f8938fe0c07d221ebccdf5a9a0029fda01f036 (patch)
tree2396fe120e4c2ed15c9734902c240c44c8a81f9a /gnu
parente13b55ae797c8da2b06811d25e21abd173295b8d (diff)
install: Enable SSH in installation image.
* gnu/system/install.scm (%installation-services): Add OPENSSH-SERVICE-TYPE. * doc/guix.texi (Preparing for Installation)[Networking]: Document it.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system/install.scm12
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index 191ccf1680e..9a6febfeba7 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -2,6 +2,7 @@
2;;; Copyright © 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> 3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
4;;; Copyright © 2016 Andreas Enge <andreas@enge.fr> 4;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
5;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
5;;; 6;;;
6;;; This file is part of GNU Guix. 7;;; This file is part of GNU Guix.
7;;; 8;;;
@@ -25,6 +26,7 @@
25 #:use-module (guix monads) 26 #:use-module (guix monads)
26 #:use-module ((guix store) #:select (%store-prefix)) 27 #:use-module ((guix store) #:select (%store-prefix))
27 #:use-module (gnu services shepherd) 28 #:use-module (gnu services shepherd)
29 #:use-module (gnu services ssh)
28 #:use-module (gnu packages admin) 30 #:use-module (gnu packages admin)
29 #:use-module (gnu packages bash) 31 #:use-module (gnu packages bash)
30 #:use-module (gnu packages bootloaders) 32 #:use-module (gnu packages bootloaders)
@@ -262,6 +264,16 @@ You have been warned. Thanks for being so brave.
262 ;; To facilitate copy/paste. 264 ;; To facilitate copy/paste.
263 (gpm-service) 265 (gpm-service)
264 266
267 ;; Add an SSH server to facilitate remote installs.
268 (service openssh-service-type
269 (openssh-configuration
270 (port-number 22)
271 (permit-root-login #t)
272 ;; The root account is passwordless, so make sure
273 ;; a password is set before allowing logins.
274 (allow-empty-passwords? #f)
275 (password-authentication? #t)))
276
265 ;; Since this is running on a USB stick with a unionfs as the root 277 ;; Since this is running on a USB stick with a unionfs as the root
266 ;; file system, use an appropriate cache configuration. 278 ;; file system, use an appropriate cache configuration.
267 (nscd-service (nscd-configuration 279 (nscd-service (nscd-configuration