guix-commits
[Top][All Lists]
Advanced

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

06/08: services: avahi: Pass --daemonize and check for the PID file.


From: Ludovic Courtès
Subject: 06/08: services: avahi: Pass --daemonize and check for the PID file.
Date: Mon, 27 Jun 2016 21:26:39 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 194ccecf778faf28be0bce31c629211feb6f1a0a
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jun 27 21:17:05 2016 +0200

    services: avahi: Pass --daemonize and check for the PID file.
    
    This makes sure the service's 'start' finishes when avahi-daemon is
    ready to process requests.
    
    * gnu/services/avahi.scm (avahi-shepherd-service): Use --daemonize
    instead of --syslog and add #:pid-file.
---
 gnu/services/avahi.scm |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/services/avahi.scm b/gnu/services/avahi.scm
index 8005b06..7c3bdab 100644
--- a/gnu/services/avahi.scm
+++ b/gnu/services/avahi.scm
@@ -104,7 +104,8 @@
 
            (start #~(make-forkexec-constructor
                      (list (string-append #$avahi "/sbin/avahi-daemon")
-                           "--syslog" "-f" #$config)))
+                           "--daemonize" "-f" #$config)
+                     #:pid-file "/var/run/avahi-daemon/pid"))
            (stop #~(make-kill-destructor))))))
 
 (define avahi-service-type



reply via email to

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