taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 6324f0861ad46f09c15a89be9a588a4ff14f53d0
parent 40fac0055731ed94da7b0c556a213b8abd39a3f3
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue,  4 Dec 2018 13:59:53 +0100

imports

Diffstat:
Mguix/config.scm | 3+--
Mguix/shepherd-with-sock.scm | 7+++++--
2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/guix/config.scm b/guix/config.scm @@ -93,8 +93,7 @@ (start (with-extensions (list shepherd) (with-imported-modules - `(((shepherd-with-sock) => ,(local-file "shepherd-with-sock.scm")) - ,@(source-module-closure '((shepherd service)))) + `(((shepherd-with-sock) => ,(local-file "shepherd-with-sock.scm"))) #~(begin (use-modules ((shepherd-with-sock) #:prefix my:)) (my:make-forkexec-constructor diff --git a/guix/shepherd-with-sock.scm b/guix/shepherd-with-sock.scm @@ -1,7 +1,10 @@ (define-module (shepherd-with-sock) #:use-module ((shepherd service) - #:select (handle-SIGCHLD - catch-system-error)) + #:select (handle-SIGCHLD read-pid-file)) + #:use-module ((shepherd support) + #:select (catch-system-error)) + #:use-module ((shepherd system) + #:select (max-file-descriptors)) #:export (make-forkexec-constructor))