summary refs log tree commit diff
path: root/gnu/services
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2021-12-22 18:28:43 +0100
committerMathieu Othacehe <othacehe@gnu.org>2021-12-23 10:54:01 +0100
commit207ee9d9cd78648c8604b055a9806a95a7dec625 (patch)
tree2d1a2a3b763d11b46004bada2d3792f411c38c5f /gnu/services
parent102c36062446663298cf0b340f38a8a703134644 (diff)
downloadguix-207ee9d9cd78648c8604b055a9806a95a7dec625.tar.gz
services: nfs: Fix statd and mountd ports.
* gnu/services/nfs.scm (nfs-shepherd-services): Fix rpcstatd-port and
rpcmountd-port arguments.
Diffstat (limited to 'gnu/services')
-rw-r--r--gnu/services/nfs.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/nfs.scm b/gnu/services/nfs.scm
index 277178c058..0d1617354e 100644
--- a/gnu/services/nfs.scm
+++ b/gnu/services/nfs.scm
@@ -304,7 +304,7 @@
                             '())
                      "--foreground"
                      #$@(if rpcstatd-port
-                            '("--port" (number->string rpcstatd-port))
+                            #~("--port" #$(number->string rpcstatd-port))
                             '()))
                #:pid-file "/var/run/rpc.statd.pid"))
            (stop #~(make-kill-destructor)))
@@ -320,7 +320,7 @@
                             '("--debug" "all")
                             '())
                      #$@(if rpcmountd-port
-                            '("--port" (number->string rpcmountd-port))
+                            #~("--port" #$(number->string rpcmountd-port))
                             '()))))
            (stop #~(make-kill-destructor)))
           (shepherd-service