chiark / gitweb /
bus: install systemd-bus-proxyd unit files for compatibility with dbus1
[elogind.git] / src / bus-proxyd / bus-proxyd.c
index 9c49e0ee8da539ead7ba5e07500e918e9077fd18..015f40a65ce0ab5d5f14068e976d9c03159714f7 100644 (file)
 #include "bus-util.h"
 #include "build.h"
 
-#define DEFAULT_BUS_PATH "unix:path=/run/dbus/system_bus_socket"
-
-const char *arg_bus_path = DEFAULT_BUS_PATH;
+#ifdef ENABLE_KDBUS
+const char *arg_bus_path = "kernel:path=/dev/kdbus/0-system/bus;unix:path=/run/dbus/system_bus_socket";
+#else
+const char *arg_bus_path = "unix:path=/run/dbus/system_bus_socket";
+#endif
 
 static int help(void) {
 
         printf("%s [OPTIONS...]\n\n"
-               "STDIO or socket-activatable proxy to a given DBus endpoint.\n\n"
+               "Connection STDIO or a socket to a given bus address.\n\n"
                "  -h --help              Show this help\n"
                "     --version           Show package version\n"
-               "     --bus-path=PATH     Path to the kernel bus (default: %s)\n",
-               program_invocation_short_name, DEFAULT_BUS_PATH);
+               "  -p --bus-path=PATH     Bus address to forward to (default: %s)\n",
+               program_invocation_short_name, arg_bus_path);
 
         return 0;
 }