This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 9e2d275 gnu: services: Fix the NFS service.
9e2d275 is described below
commit 9e2d275b27ee1f34d82cae8a25740169870e76d5
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Fri Feb 5 17:05:46 2021 -0500
gnu: services: Fix the NFS service.
* gnu/services/nfs.scm (rpcbind-service-type): Adjust for the file name
change
of the rpcbind command.
---
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 859097e..277178c 100644
--- a/gnu/services/nfs.scm
+++ b/gnu/services/nfs.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 John Darrington <[email protected]>
;;; Copyright © 2018, 2019, 2020 Ricardo Wurmus <[email protected]>
-;;; Copyright © 2020 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2020, 2021 Maxim Cournoyer <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -69,7 +69,7 @@
(rpcbind-configuration-rpcbind config))
(define rpcbind-command
- #~(list (string-append #$rpcbind "/bin/rpcbind") "-f"
+ #~(list (string-append #$rpcbind "/sbin/rpcbind") "-f"
#$@(if (rpcbind-configuration-warm-start? config) '("-w")
'())))
(shepherd-service