guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: services: nfs: Run rpc.mountd in foreground.


From: guix-commits
Subject: branch master updated: services: nfs: Run rpc.mountd in foreground.
Date: Sun, 08 Mar 2020 00:28:13 -0500

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 5fdc5b2  services: nfs: Run rpc.mountd in foreground.
5fdc5b2 is described below

commit 5fdc5b2d57d2e7ab04dbaf9c85e7f34eebe81495
Author: Maxim Cournoyer <address@hidden>
AuthorDate: Sat Mar 7 23:58:39 2020 -0500

    services: nfs: Run rpc.mountd in foreground.
    
    Fixes <https://bugs.gnu.org/39708>.
    
    Shepherd doesn't keep track of processes that fork themselves and would
    disable the process after restarting it a couple times.
    
    * gnu/services/nfs.scm (nfs-shepherd-services): Invoke rpc.mountd with the
    '--foreground' option.
---
 gnu/services/nfs.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/services/nfs.scm b/gnu/services/nfs.scm
index ddc9e2c..140a118 100644
--- a/gnu/services/nfs.scm
+++ b/gnu/services/nfs.scm
@@ -299,6 +299,7 @@
            (start
             #~(make-forkexec-constructor
                (list #$(file-append nfs-utils "/sbin/rpc.mountd")
+                     "--foreground"
                      #$@(if (member 'mountd debug)
                             '("--debug" "all")
                             '())



reply via email to

[Prev in Thread] Current Thread [Next in Thread]