X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fdbus-mount.c;h=70b2d48330072f352a9a10104afd4601b30f31f4;hb=5b1869eaa22e365ab6595924fe96549b279b5ebc;hp=ae04ab8c47ac81538b475c4bc92ba16bd04d74d3;hpb=74c964d369b11bbf465c140c3f2dfcde2c7f5977;p=elogind.git diff --git a/src/core/dbus-mount.c b/src/core/dbus-mount.c index ae04ab8c4..70b2d4833 100644 --- a/src/core/dbus-mount.c +++ b/src/core/dbus-mount.c @@ -36,11 +36,13 @@ " \n" \ " \n" \ " \n" \ + BUS_UNIT_CGROUP_INTERFACE \ BUS_EXEC_COMMAND_INTERFACE("ExecMount") \ BUS_EXEC_COMMAND_INTERFACE("ExecUnmount") \ BUS_EXEC_COMMAND_INTERFACE("ExecRemount") \ BUS_EXEC_CONTEXT_INTERFACE \ BUS_KILL_CONTEXT_INTERFACE \ + BUS_CGROUP_CONTEXT_INTERFACE \ " \n" \ " \n" \ " \n" \ @@ -60,7 +62,7 @@ BUS_UNIT_INTERFACES_LIST \ "org.freedesktop.systemd1.Mount\0" -const char bus_mount_interface[] _introspect_("Mount") = BUS_MOUNT_INTERFACE; +const char bus_mount_interface[] = BUS_MOUNT_INTERFACE; const char bus_mount_invalidating_properties[] = "What\0" @@ -157,6 +159,7 @@ DBusHandlerResult bus_mount_message_handler(Unit *u, DBusConnection *c, DBusMess const BusBoundProperties bps[] = { { "org.freedesktop.systemd1.Unit", bus_unit_properties, u }, + { "org.freedesktop.systemd1.Mount", bus_unit_cgroup_properties, u }, { "org.freedesktop.systemd1.Mount", bus_mount_properties, m }, { "org.freedesktop.systemd1.Mount", bus_exec_context_properties, &m->exec_context }, { "org.freedesktop.systemd1.Mount", bus_kill_context_properties, &m->kill_context },