janneke pushed a commit to branch wip-hurd-vm
in repository guix.
commit 2141f3e5a14e88a48bd5842495b34de0c8813da3
Author: Jan (janneke) Nieuwenhuizen <[email protected]>
AuthorDate: Mon Apr 13 10:36:56 2020 +0200
services: Add hurd-ttys-service-type.
* gnu/services/hurd.scm (<hurd-ttys-configuration>): New variable.
(hurd-ttys-shepherd-service, hurd-ttys-service-type): New function.
(hurd-service->shepherd-service): Add entry.
---
gnu/services/hurd.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 44 insertions(+), 2 deletions(-)
diff --git a/gnu/services/hurd.scm b/gnu/services/hurd.scm
index d20802e..647bf9b 100644
--- a/gnu/services/hurd.scm
+++ b/gnu/services/hurd.scm
@@ -27,10 +27,14 @@
#:use-module (guix records)
#:use-module (srfi srfi-1)
#:use-module (ice-9 match)
- #:export (hurd-console-service-type
+ #:export (hurd-console-configuration
+ fancy?
+ hurd-console-service-type
hurd-service->shepherd-service
hurd-ssh-configuration
- hurd-ssh-service-type))
+ hurd-ssh-service-type
+ hurd-ttys-configuration
+ hurd-ttys-service-type))
;;; Commentary:
;;;
@@ -43,6 +47,7 @@
(let ((config (service-value service)))
(match config
(($ <hurd-console-configuration>) (hurd-console-shepherd-service config))
+ (($ <hurd-ttys-configuration>) (hurd-ttys-shepherd-service config))
(($ <openssh-configuration>) (hurd-ssh-shepherd-service config))
(_ '()))))
@@ -92,6 +97,43 @@
;;;
+;;; Simple wrapper for <hurd>/libexec/runttys.
+;;;
+
+(define-record-type* <hurd-ttys-configuration>
+ hurd-ttys-configuration make-hurd-ttys-configuration
+ hurd-ttys-configuration?
+ (hurd hurd-ttys-configuration-hurd ;package
+ (default hurd)))
+
+(define (hurd-ttys-shepherd-service config)
+ "Return a <shepherd-service> for the Hurd ttys with CONFIG."
+
+ (define runttys-command
+ #~(list
+ (string-append #$(hurd-ttys-configuration-hurd config)
"/libexec/runttys")))
+
+ (list (shepherd-service
+ (documentation "Hurd ttys.")
+ (provision '(ttys))
+ (requirement '(console))
+ (start #~(lambda _ (fork+exec-command #$runttys-command) #t))
+ (stop #~(make-kill-destructor)))))
+
+(define hurd-ttys-service-type
+ (service-type
+ (name 'tty)
+ (description
+ "Run a hurd ttys, @command{runttys}.")
+ (extensions
+ (list (service-extension shepherd-root-service-type
+ hurd-ttys-shepherd-service)))
+ (compose concatenate)
+ (extend append)
+ (default-value (hurd-ttys-configuration))))
+
+
+;;;
;;; Simplified OpenSSH. This removes loopback, syslogd and PAM dependencies.
;;; This package will be removed when the Hurd supports those.
;;;