The setuid helper of D-Bus is responsible for "service activation". It looks for '.service' files in fixed locations, but the default locations make no sense (see below), so replace them with /etc/dbus-1/system-services. --- dbus-1.10.0/dbus/dbus-sysdeps-util-unix.c 2015-10-22 00:07:03.829251854 +0200 +++ dbus-1.10.0/dbus/dbus-sysdeps-util-unix.c 2015-10-22 00:07:14.893445175 +0200 @@ -1410,10 +1410,7 @@ _dbus_get_standard_system_servicedirs (D * be available. */ static const char standard_search_path[] = - "/usr/local/share:" - "/usr/share:" - DBUS_DATADIR ":" - "/lib"; + "/etc"; DBusString servicedir_path; _dbus_string_init_const (&servicedir_path, standard_search_path); 'h' onchange='this.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu.scm
AgeCommit message (Collapse)Author
2019-03-24Add (gnu system keyboard).Ludovic Courtès
* gnu/system/keyboard.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * gnu.scm (%public-modules): Add it.
2017-11-08gnu: Improve error reporting of the use-.*modules macros.Ludovic Courtès
Suggested by Julien Lepiller and myglc2 at <https://lists.gnu.org/archive/html/guix-devel/2017-11/msg00106.html>. * gnu.scm (%try-use-modules): New procedure. (package-module-hint, service-module-hint): New procedures. (try-use-modules): New macro. (use-package-modules, use-service-modules, use-system-modules): Use it. * tests/guix-system.sh: Test it.