guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

21/36: services: Add hurd-file-systems-service-type.


From: guix-commits
Subject: 21/36: services: Add hurd-file-systems-service-type.
Date: Fri, 1 May 2020 11:54:00 -0400 (EDT)

janneke pushed a commit to branch wip-hurd-vm
in repository guix.

commit 945436e524e460935cc819b8770b3925c03ca287
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Sat Apr 25 11:58:21 2020 +0200

    services: Add hurd-file-systems-service-type.
    
    guix system build ... depends on `file-systems-services'.  Provide a dummy
    for that, so that we can migrate to guix system ...
    
    * gnu/services/hurd.scm (hurd-file-systems-services-shepherd-service,
    hurd-file-systems-services-service-type): New function.
    (hurd-service->shepherd-service): Add entry.
---
 gnu/services/hurd.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/services/hurd.scm b/gnu/services/hurd.scm
index 3e2a72f..892cd7b 100644
--- a/gnu/services/hurd.scm
+++ b/gnu/services/hurd.scm
@@ -34,6 +34,7 @@
   #:export (hurd-console-configuration
             hurd-console-service-type
             hurd-etc-service
+            hurd-file-systems-service-type
             hurd-loopback-service-type
             hurd-service->shepherd-service
             hurd-ttys-configuration
@@ -55,6 +56,7 @@
       (($ <openssh-configuration>) (openssh-shepherd-service config))
       (($ <syslog-configuration>) (syslog-shepherd-service config))
       (('loopback) (hurd-loopback-shepherd-service #f))
+      (('file-systems) (hurd-file-systems-shepherd-service #f))
       (('user-processes) (user-processes-shepherd-service '()))
       (_ '()))))
 
@@ -88,6 +90,33 @@ fi\n")))
 
 
 ;;;
+;;; Dummy hurd-file-systems-shepherd-service, required for user-homes.
+;;;
+
+(define (hurd-file-systems-shepherd-service _)
+  "Return the 'file-systems' Shepherd service."
+
+  (list (shepherd-service
+         (documentation "Dummy for bootstrapping (gnu services) on the Hurd.")
+         (provision '(file-systems))
+         (requirement '())
+         (start #~(const #t))
+         (stop #~(const #t))
+         (respawn? #f))))
+
+(define hurd-file-systems-service-type
+  (service-type
+   (name 'file-systems)
+   (extensions (list (service-extension shepherd-root-service-type
+                                        hurd-file-systems-shepherd-service)))
+   (compose concatenate)
+   (extend first-of-two)
+   (default-value '(file-systems)) ;canary for hurd-service->shepherd-service
+   (description "Dummy service to bootstrap (gnu services) on the
+Hurd.")))
+
+
+;;;
 ;;; Bridge for guix-daemon.
 ;;;
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]