mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
services: nfs: Fix statd and mountd ports.
* gnu/services/nfs.scm (nfs-shepherd-services): Fix rpcstatd-port and rpcmountd-port arguments.
This commit is contained in:
parent
102c360624
commit
207ee9d9cd
1 changed files with 2 additions and 2 deletions
|
@ -304,7 +304,7 @@ (define (nfs-shepherd-services config)
|
|||
'())
|
||||
"--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 @@ (define (nfs-shepherd-services config)
|
|||
'("--debug" "all")
|
||||
'())
|
||||
#$@(if rpcmountd-port
|
||||
'("--port" (number->string rpcmountd-port))
|
||||
#~("--port" #$(number->string rpcmountd-port))
|
||||
'()))))
|
||||
(stop #~(make-kill-destructor)))
|
||||
(shepherd-service
|
||||
|
|
Loading…
Reference in a new issue