diff mbox series

[bug#38902,2/9] services: nfs: Fix name of package variable.

Message ID 20200103173506.9779-2-rekado@elephly.net
State Accepted
Headers show
Series Add NFS service | expand

Checks

Context Check Description
cbaines/applying patch fail Apply failed

Commit Message

Ricardo Wurmus Jan. 3, 2020, 5:34 p.m. UTC
* gnu/services/nfs.scm (rpcbind-service-type): Correct name from nfs-utils to
rpcbind.
---
 gnu/services/nfs.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/gnu/services/nfs.scm b/gnu/services/nfs.scm
index 6ed4c0eabf..834e94a800 100644
--- a/gnu/services/nfs.scm
+++ b/gnu/services/nfs.scm
@@ -1,5 +1,6 @@ 
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2016 John Darrington <jmd@gnu.org>
+;;; Copyright © 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -58,11 +59,11 @@ 
   (shepherd-service-type
    'rpcbind
    (lambda (config)
-     (define nfs-utils
+     (define rpcbind
        (rpcbind-configuration-rpcbind config))
 
      (define rpcbind-command
-       #~(list (string-append #$nfs-utils "/bin/rpcbind") "-f"
+       #~(list (string-append #$rpcbind "/bin/rpcbind") "-f"
                #$@(if (rpcbind-configuration-warm-start? config) '("-w") '())))
 
      (shepherd-service