[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/14: services: nfs: Fix statd and mountd ports.
From: |
guix-commits |
Subject: |
11/14: services: nfs: Fix statd and mountd ports. |
Date: |
Thu, 23 Dec 2021 04:55:06 -0500 (EST) |
mothacehe pushed a commit to branch master
in repository guix.
commit 207ee9d9cd78648c8604b055a9806a95a7dec625
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Wed Dec 22 18:28:43 2021 +0100
services: nfs: Fix statd and mountd ports.
* gnu/services/nfs.scm (nfs-shepherd-services): Fix rpcstatd-port and
rpcmountd-port arguments.
---
gnu/services/nfs.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/services/nfs.scm b/gnu/services/nfs.scm
index 277178c..0d16173 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
- branch master updated (258150f -> 7682145), guix-commits, 2021/12/23
- 01/14: build: image: Add optional closure copy support., guix-commits, 2021/12/23
- 02/14: image: Add a shared-store? field., guix-commits, 2021/12/23
- 03/14: image: Add a shared-network? field., guix-commits, 2021/12/23
- 04/14: system: image: Add docker support., guix-commits, 2021/12/23
- 08/14: scripts: system: Pass the volatile field to VM generation., guix-commits, 2021/12/23
- 11/14: services: nfs: Fix statd and mountd ports.,
guix-commits <=
- 12/14: tests: nfs: Fix nfs-root-fs test., guix-commits, 2021/12/23
- 13/14: scripts: system: Add a missing module., guix-commits, 2021/12/23
- 05/14: system: vm: Use the image API to generate QEMU images., guix-commits, 2021/12/23
- 06/14: Remove VM generation dead-code., guix-commits, 2021/12/23
- 09/14: scripts: system: Use the disk-image size argument for VM generation., guix-commits, 2021/12/23
- 07/14: scripts: system: Deprecate the docker-image command., guix-commits, 2021/12/23
- 14/14: tests: reconfigure: Fix it., guix-commits, 2021/12/23
- 10/14: tests: docker: Fix it., guix-commits, 2021/12/23