[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: guix system: search: Display all provision names as 'shepherdname
From: |
Clément Lassieur |
Subject: |
01/01: guix system: search: Display all provision names as 'shepherdnames'. |
Date: |
Tue, 1 May 2018 17:30:47 -0400 (EDT) |
snape pushed a commit to branch master
in repository guix.
commit bb6f94c71e9a8dfb1a0f5cad4b0196bdb175375c
Author: Clément Lassieur <address@hidden>
Date: Tue May 1 01:11:31 2018 +0200
guix system: search: Display all provision names as 'shepherdnames'.
* guix/scripts/system/search.scm (service-type-shepherd-names): Append
provision lists together instead of returning a list of provision cars.
---
guix/scripts/system/search.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/guix/scripts/system/search.scm b/guix/scripts/system/search.scm
index 7229c60..955cdd1 100644
--- a/guix/scripts/system/search.scm
+++ b/guix/scripts/system/search.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017, 2018 Ludovic Courtès <address@hidden>
+;;; Copyright © 2018 Clément Lassieur <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -59,10 +60,8 @@ provided TYPE has a default value."
(define (service-type-shepherd-names type)
"Return the default names of Shepherd services created for TYPE."
- (match (map shepherd-service-provision
- (service-type-default-shepherd-services type))
- (((names . _) ...)
- names)))
+ (append-map shepherd-service-provision
+ (service-type-default-shepherd-services type)))
(define* (service-type->recutils type port
#:optional (width (%text-width))