summaryrefslogtreecommitdiff
path: root/src/core/dbus-mount.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-06-27 23:21:21 +0200
committerLennart Poettering <lennart@poettering.net>2013-06-27 23:21:21 +0200
commit74c964d369b11bbf465c140c3f2dfcde2c7f5977 (patch)
tree7d4cfc98a04c2d9a0170626fd8bb3b4c40439447 /src/core/dbus-mount.c
parent7041efe9600e569da6089c36d00fa3ff58e33178 (diff)
dbus: hookup runtime property changes for mouns, services, sockets, swaps too
Diffstat (limited to 'src/core/dbus-mount.c')
-rw-r--r--src/core/dbus-mount.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/core/dbus-mount.c b/src/core/dbus-mount.c
index 16b7afe8b7..ae04ab8c47 100644
--- a/src/core/dbus-mount.c
+++ b/src/core/dbus-mount.c
@@ -168,3 +168,31 @@ DBusHandlerResult bus_mount_message_handler(Unit *u, DBusConnection *c, DBusMess
return bus_default_message_handler(c, message, INTROSPECTION, INTERFACES_LIST, bps );
}
+
+int bus_mount_set_property(
+ Unit *u,
+ const char *name,
+ DBusMessageIter *i,
+ UnitSetPropertiesMode mode,
+ DBusError *error) {
+
+ Mount *m = MOUNT(u);
+ int r;
+
+ assert(name);
+ assert(u);
+ assert(i);
+
+ r = bus_cgroup_set_property(u, &m->cgroup_context, name, i, mode, error);
+ if (r != 0)
+ return r;
+
+ return 0;
+}
+
+int bus_mount_commit_properties(Unit *u) {
+ assert(u);
+
+ unit_realize_cgroup(u);
+ return 0;
+}