guix-commits
[Top][All Lists]
Advanced

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

39/42: services: hurd: Use cons as extend method.


From: guix-commits
Subject: 39/42: services: hurd: Use cons as extend method.
Date: Sat, 25 Apr 2020 13:45:10 -0400 (EDT)

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

commit 97a7c757cd0463bfe659d2cb687eefd2c46e1f77
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Sat Apr 25 12:42:31 2020 +0200

    services: hurd: Use cons as extend method.
    
    * gnu/services/hurd.scm (hurd-file-systems-service-type,
    hurd-user-processes-service-type, hurd-console-service-type,
    hurd-loopback-service-type, hurd-ttys-service-type): Use CONS for extend 
(was:
    APPEND).
---
 gnu/services/hurd.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/services/hurd.scm b/gnu/services/hurd.scm
index 2bbb171..db06909 100644
--- a/gnu/services/hurd.scm
+++ b/gnu/services/hurd.scm
@@ -108,7 +108,7 @@ fi\n")))
    (extensions (list (service-extension shepherd-root-service-type
                                         hurd-file-systems-shepherd-service)))
    (compose concatenate)
-   (extend append)
+   (extend cons)
    (default-value '(file-systems)) ;canary for hurd-service->shepherd-service
    (description "Dummy service to bootstrap (gnu services) on the
 Hurd.")))
@@ -159,7 +159,7 @@ Hurd.")))
    (extensions (list (service-extension shepherd-root-service-type
                                         hurd-user-processes-shepherd-service)))
    (compose concatenate)
-   (extend append)
+   (extend cons)
    (default-value '(user-processes)) ;canary for hurd-service->shepherd-service
    (description "Dummy service to bootstrap (gnu services) on the
 Hurd.")))
@@ -202,7 +202,7 @@ Hurd.")))
     (list (service-extension shepherd-root-service-type
                              hurd-console-shepherd-service)))
    (compose concatenate)
-   (extend  append)
+   (extend cons)
    (default-value (hurd-console-configuration))))
 
 
@@ -227,7 +227,7 @@ Hurd.")))
    (extensions (list (service-extension shepherd-root-service-type
                                         hurd-loopback-shepherd-service)))
    (compose concatenate)
-   (extend append)
+   (extend cons)
    (default-value '(loopback)) ;canary for hurd-service->shepherd-service
    (description "Dummy service to bootstrap (gnu services) on the
 Hurd.")))
@@ -266,7 +266,7 @@ Hurd.")))
     (list (service-extension shepherd-root-service-type
                              hurd-ttys-shepherd-service)))
    (compose concatenate)
-   (extend  append)
+   (extend cons)
    (default-value (hurd-ttys-configuration))))
 
 



reply via email to

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