taler-deployment

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

commit ebbd5b4724e29635db4ea101f086d2fb71d3eb0b
parent 4b0071f70c09019e9ba33f55347637c822e20cfe
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed,  5 Dec 2018 12:50:00 +0100

wrong parens

Diffstat:
Mguix/shepherd-with-sock.scm | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/guix/shepherd-with-sock.scm b/guix/shepherd-with-sock.scm @@ -21,15 +21,15 @@ (fileno sock))) (match stdin-socket (('unix sockpath) - (get-sock PF_UNIX AF_UNIX sockpath) - (('tcp addr port) - (get-sock PF_INET AF_INET (inet-pton AF_INET addr) port)) - (('tcp6 addr port) - (get-sock PF_INET6 AF_INET6 (inet-pton AF_INET6 addr) port)) - (#f - ;; Make sure file descriptor zero is used, so we don't end up reusing - ;; it for something unrelated, which can confuse some packages. - (open-fdes "/dev/null" O_RDONLY))))) + (get-sock PF_UNIX AF_UNIX sockpath)) + (('tcp addr port) + (get-sock PF_INET AF_INET (inet-pton AF_INET addr) port)) + (('tcp6 addr port) + (get-sock PF_INET6 AF_INET6 (inet-pton AF_INET6 addr) port)) + (#f + ;; Make sure file descriptor zero is used, so we don't end up reusing + ;; it for something unrelated, which can confuse some packages. + (open-fdes "/dev/null" O_RDONLY)))) (define* (exec-command command