diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-05-02 23:04:27 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-05-07 08:46:43 -0700 |
commit | 14456f760768fc5b03f3e90e7c816fda51bdcd25 (patch) | |
tree | c59b0adfd169152dc83f52f39e7c7f8c2f97c618 /src/machine/machine-dbus.c | |
parent | 5d990cc571af23e2958eba9f18f1b0513008e520 (diff) | |
download | systemd-14456f760768fc5b03f3e90e7c816fda51bdcd25.tar.gz |
machine: switch to BusLocator-oriented helpers
Mechanical substitution reducing some verbosity
Diffstat (limited to 'src/machine/machine-dbus.c')
-rw-r--r-- | src/machine/machine-dbus.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/src/machine/machine-dbus.c b/src/machine/machine-dbus.c index 1d17f220a5..903dd8f161 100644 --- a/src/machine/machine-dbus.c +++ b/src/machine/machine-dbus.c @@ -552,14 +552,7 @@ int bus_machine_method_open_login(sd_bus_message *message, void *userdata, sd_bu getty = strjoina("container-getty@", p, ".service"); - r = sd_bus_call_method( - container_bus, - "org.freedesktop.systemd1", - "/org/freedesktop/systemd1", - "org.freedesktop.systemd1.Manager", - "StartUnit", - error, NULL, - "ss", getty, "replace"); + r = bus_call_method(container_bus, bus_systemd_mgr, "StartUnit", error, NULL, "ss", getty, "replace"); if (r < 0) return r; @@ -668,13 +661,7 @@ int bus_machine_method_open_shell(sd_bus_message *message, void *userdata, sd_bu container_bus = allocated_bus ?: m->manager->bus; - r = sd_bus_message_new_method_call( - container_bus, - &tm, - "org.freedesktop.systemd1", - "/org/freedesktop/systemd1", - "org.freedesktop.systemd1.Manager", - "StartTransientUnit"); + r = bus_message_new_method_call(container_bus, &tm, bus_systemd_mgr, "StartTransientUnit"); if (r < 0) return r; |