diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-04-07 18:02:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-07 18:02:39 +0200 |
commit | 7d1030a63592aa2f94f6617786f22cfa83fb346f (patch) | |
tree | c261d44ed8da00a6795e8dbcd96fdcfa93cf0afc /gnu/installer/steps.scm | |
parent | 75988317b22efee2b2719e7d559fa9ff01a9db9a (diff) | |
download | patches-7d1030a63592aa2f94f6617786f22cfa83fb346f.tar patches-7d1030a63592aa2f94f6617786f22cfa83fb346f.tar.gz |
installer: Add dialog to select networking services.
* gnu/installer/newt/services.scm (run-networking-cbt-page): New procedure.
(run-services-page): Call it.
* gnu/installer/services.scm (%system-services): Add OpenSSH and Tor.
(networking-system-service?): New procedure.
* gnu/installer/steps.scm (format-configuration): Add 'networking' and
'ssh' to the service modules.
Diffstat (limited to 'gnu/installer/steps.scm')
-rw-r--r-- | gnu/installer/steps.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/installer/steps.scm b/gnu/installer/steps.scm index 3f0bdad4f7..96cfdd03d1 100644 --- a/gnu/installer/steps.scm +++ b/gnu/installer/steps.scm @@ -215,7 +215,7 @@ found in RESULTS." '()))) steps)) (modules '((use-modules (gnu)) - (use-service-modules desktop)))) + (use-service-modules desktop networking ssh)))) `(,@modules () (operating-system ,@configuration)))) |