[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/08: services: nfs: Allow gss-service-type to be extended.
From: |
guix-commits |
Subject: |
07/08: services: nfs: Allow gss-service-type to be extended. |
Date: |
Wed, 8 Jan 2020 18:07:58 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit a6bdca6b9b7a5de8244b46d0e16047f6deb31272
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Fri Jan 3 18:16:13 2020 +0100
services: nfs: Allow gss-service-type to be extended.
* gnu/services/nfs.scm (gss-service-type): Rewrite using SERVICE-TYPE to add
ability to extend the service.
---
gnu/services/nfs.scm | 53 ++++++++++++++++++++++++++++++++--------------------
1 file changed, 33 insertions(+), 20 deletions(-)
diff --git a/gnu/services/nfs.scm b/gnu/services/nfs.scm
index 054dad0..cd7e8fa 100644
--- a/gnu/services/nfs.scm
+++ b/gnu/services/nfs.scm
@@ -136,26 +136,39 @@
(default nfs-utils)))
(define gss-service-type
- (shepherd-service-type
- 'gss
- (lambda (config)
- (define nfs-utils
- (gss-configuration-gss config))
-
- (define pipefs-directory
- (gss-configuration-pipefs-directory config))
-
- (define gss-command
- #~(list (string-append #$nfs-utils "/sbin/rpc.gssd") "-f"
- "-p" #$pipefs-directory))
-
- (shepherd-service
- (documentation "Start the RPC GSS daemon.")
- (requirement '(rpcbind-daemon rpc-pipefs))
- (provision '(gss-daemon))
-
- (start #~(make-forkexec-constructor #$gss-command))
- (stop #~(make-kill-destructor))))))
+ (let ((proc
+ (lambda (config)
+ (define nfs-utils
+ (gss-configuration-gss config))
+
+ (define pipefs-directory
+ (gss-configuration-pipefs-directory config))
+
+ (define gss-command
+ #~(list (string-append #$nfs-utils "/sbin/rpc.gssd") "-f"
+ "-p" #$pipefs-directory))
+
+ (shepherd-service
+ (documentation "Start the RPC GSS daemon.")
+ (requirement '(rpcbind-daemon rpc-pipefs))
+ (provision '(gss-daemon))
+
+ (start #~(make-forkexec-constructor #$gss-command))
+ (stop #~(make-kill-destructor))))))
+ (service-type
+ (name 'gss)
+ (extensions
+ (list (service-extension shepherd-root-service-type
+ (compose list proc))))
+ ;; We use the extensions feature to allow other services to automatically
+ ;; configure and start this service. Only one value can be provided. We
+ ;; override it with the value returned by the extending service.
+ (compose identity)
+ (extend (lambda (config values)
+ (match values
+ ((first . rest) first)
+ (_ config))))
+ (default-value (gss-configuration)))))
- branch master updated (62b9d3d -> 907eeac), guix-commits, 2020/01/08
- 02/08: services: nfs: Allow rpcbind-service-type to be extended., guix-commits, 2020/01/08
- 03/08: services: nfs: Allow pipefs-service-type to be extended., guix-commits, 2020/01/08
- 01/08: services: nfs: Fix name of package variable., guix-commits, 2020/01/08
- 05/08: services: nfs: Allow idmap-service-type to be extended., guix-commits, 2020/01/08
- 04/08: services: nfs: Fix indentation and typo., guix-commits, 2020/01/08
- 06/08: services: nfs: Add verbosity control to idmap-service-type., guix-commits, 2020/01/08
- 07/08: services: nfs: Allow gss-service-type to be extended.,
guix-commits <=
- 08/08: services: nfs: Add nfs-service-type., guix-commits, 2020/01/08