From 33f9778bc83086837b99e5c5e99cd514cb0d154e Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 1 Nov 2019 23:29:06 +0100 Subject: services: dbus: Include each service's "share/dbus-1/system.d". Fixes . Reported by Jack Hill . Sometime between 1.1.8 and 1.4.3, 'colord' moved had its 'org.freedesktop.ColorManager.conf' file moved from "etc/dbus-1/system.d" to "share/dbus-1/system.d". Adjust to this change. * gnu/services/dbus.scm (dbus-configuration-directory): Add an 'includedir' directive for DIR/share/dbus-1/system.d. --- gnu/services/dbus.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gnu/services') diff --git a/gnu/services/dbus.scm b/gnu/services/dbus.scm index 35d7ff3c9c..fcdeb3bf60 100644 --- a/gnu/services/dbus.scm +++ b/gnu/services/dbus.scm @@ -100,6 +100,8 @@ (define (services->sxml services) ,@(append-map (lambda (dir) `((includedir ,(string-append dir "/etc/dbus-1/system.d")) + (includedir + ,(string-append dir "/share/dbus-1/system.d")) (servicedir ;for '.service' files ,(string-append dir "/share/dbus-1/services")))) services))) -- cgit v1.2.3