aboutsummaryrefslogtreecommitdiff
path: root/gnu/services
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/services')
-rw-r--r--gnu/services/avahi.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/avahi.scm b/gnu/services/avahi.scm
index a5305130af..bb81d26aed 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