diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2015-02-19 20:47:28 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-03-01 12:01:16 +0100 |
commit | f2273101c21bc59a390379e182e53cd4f07a7e71 (patch) | |
tree | 406eda330192c179e0432b9716706f18188c4019 /src/machine/machine-dbus.c | |
parent | c43b2132f37264600cc26e07c8d85dfdd6c969f0 (diff) |
machined: use x-machine-unix prefix for the container bus on dbus1
This fixes "machinectl login" on systems configured with --disable-kdbus.
The error was:
machinectl login foo
Failed to get machine PTY: Input/output error
Diffstat (limited to 'src/machine/machine-dbus.c')
-rw-r--r-- | src/machine/machine-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machine-dbus.c b/src/machine/machine-dbus.c index 15c9159405..9e78a678ef 100644 --- a/src/machine/machine-dbus.c +++ b/src/machine/machine-dbus.c @@ -511,7 +511,7 @@ int bus_machine_method_open_login(sd_bus *bus, sd_bus_message *message, void *us #ifdef ENABLE_KDBUS asprintf(&container_bus->address, "x-machine-kernel:pid=" PID_FMT ";x-machine-unix:pid=" PID_FMT, m->leader, m->leader); #else - asprintf(&container_bus->address, "x-machine-kernel:pid=" PID_FMT, m->leader); + asprintf(&container_bus->address, "x-machine-unix:pid=" PID_FMT, m->leader); #endif if (!container_bus->address) return log_oom(); |