rekado pushed a commit to branch master
in repository guix.

commit 981ce38937c21ed1395c0a6ff7e384890234fa62
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Fri Jan 3 17:45:24 2020 +0100

    services: nfs: Fix name of package variable.
    
    * 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 --git a/gnu/services/nfs.scm b/gnu/services/nfs.scm
index 6ed4c0e..834e94a 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 <[email protected]>
+;;; Copyright © 2018, 2019, 2020 Ricardo Wurmus <[email protected]>
 ;;;
 ;;; 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

Reply via email to