diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-02-05 17:05:46 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-02-05 17:19:10 -0500 |
commit | 9e2d275b27ee1f34d82cae8a25740169870e76d5 (patch) | |
tree | c7abcdbb4341167e9f6b21998fdff1d59003429e /gnu | |
parent | fada92bb807aabd514ad20b86ad3a35a7ccbc9e7 (diff) |
gnu: services: Fix the NFS service.
* gnu/services/nfs.scm (rpcbind-service-type): Adjust for the file name change
of the rpcbind command.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/nfs.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/nfs.scm b/gnu/services/nfs.scm index 859097e788..277178c058 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 <jmd@gnu.org> ;;; Copyright © 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; ;;; 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 |