Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/src/launch/launcher.c b/src/launch/launcher.c 2index 7b1fb19..6bc2c46 100644 3--- a/src/launch/launcher.c 4+++ b/src/launch/launcher.c 5@@ -945,9 +945,7 @@ static int launcher_load_standard_system_services(Launcher *launcher, NSSCache * 6 static const char *default_data_dirs[] = { 7 "/etc", 8 "/run", 9- "/usr/local/share", 10- "/usr/share", 11- "/lib", 12+ "/run/current-system/sw/share", 13 NULL, 14 }; 15 const char *suffix = "dbus-1/system-services"; 16@@ -1033,9 +1031,9 @@ static int launcher_parse_config(Launcher *launcher, ConfigRoot **rootp, NSSCach 17 if (launcher->configfile) 18 configfile = launcher->configfile; 19 else if (launcher->user_scope) 20- configfile = "/usr/share/dbus-1/session.conf"; 21+ configfile = "/etc/dbus-1/session.conf"; 22 else 23- configfile = "/usr/share/dbus-1/system.conf"; 24+ configfile = "/etc/dbus-1/system.conf"; 25 26 config_parser_init(&parser); 27