[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: services: avahi: Read PID file from /run.
From: |
Ludovic Courtès |
Subject: |
01/05: services: avahi: Read PID file from /run. |
Date: |
Sun, 18 Feb 2018 18:33:40 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit ad7a807d84827f504d492cc1e2ac84f287fd29f6
Author: Ludovic Courtès <address@hidden>
Date: Sun Feb 18 22:13:41 2018 +0100
services: avahi: Read PID file from /run.
* gnu/services/avahi.scm (%avahi-activation, avahi-shepherd-service):
Use /run/avahi-daemon/ instead of /var/run/avahi-daemon/. This was the
case since the switch to Avahi 0.7 (commit
550f4509acf2c0f67882260414b0bb2843e07465).
---
gnu/services/avahi.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/services/avahi.scm b/gnu/services/avahi.scm
index a530513..bb81d26 100644
--- a/gnu/services/avahi.scm
+++ b/gnu/services/avahi.scm
@@ -94,7 +94,7 @@
;; Activation gexp.
#~(begin
(use-modules (guix build utils))
- (mkdir-p "/var/run/avahi-daemon")))
+ (mkdir-p "/run/avahi-daemon")))
(define (avahi-shepherd-service config)
"Return a list of <shepherd-service> for CONFIG."
@@ -111,7 +111,7 @@
"--daemonize"
#$@(if debug? #~("--debug") #~())
"-f" #$config)
- #:pid-file "/var/run/avahi-daemon/pid"))
+ #:pid-file "/run/avahi-daemon/pid"))
(stop #~(make-kill-destructor))))))
(define avahi-service-type