X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fdbus-service.c;h=0451790d83deec76237f42551d82411c17038880;hb=b272b74dfd2284838db737f62a77fb5ece227bea;hp=25af7acc2a01bd44b8d322883668294db5b56e40;hpb=556089dc57b10a12a03edd3d3e90ca17398ad206;p=elogind.git diff --git a/src/core/dbus-service.c b/src/core/dbus-service.c index 25af7acc2..0451790d8 100644 --- a/src/core/dbus-service.c +++ b/src/core/dbus-service.c @@ -69,21 +69,6 @@ const sd_bus_vtable bus_service_vtable[] = { SD_BUS_VTABLE_END }; -const char* const bus_service_changing_properties[] = { - "ExecMainStartTimestamp", - "ExecMainStartTimestampMonotonic", - "ExecMainExitTimestamp", - "ExecMainExitTimestampMonotonic", - "ExecMainPID", - "ExecMainCode", - "ExecMainStatus", - "MainPID", - "ControlPID", - "StatusText", - "Result", - NULL -}; - static int bus_service_set_transient_property( Service *s, const char *name, @@ -111,6 +96,25 @@ static int bus_service_set_transient_property( return 1; + } else if (streq(name, "Type")) { + const char *t; + ServiceType k; + + r = sd_bus_message_read(message, "s", &t); + if (r < 0) + return r; + + k = service_type_from_string(t); + if (k < 0) + return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid service type %s", t); + + if (mode != UNIT_CHECK) { + s->type = k; + unit_write_drop_in_private_format(UNIT(s), mode, name, "Type=%s\n", service_type_to_string(s->type)); + } + + return 1; + } else if (streq(name, "ExecStart")) { unsigned n = 0; @@ -166,6 +170,7 @@ static int bus_service_set_transient_property( n++; } + if (r < 0) return r; @@ -238,6 +243,10 @@ int bus_service_set_property( if (r != 0) return r; + r = bus_exec_context_set_transient_property(u, &s->exec_context, name, message, mode, error); + if (r != 0) + return r; + r = bus_kill_context_set_transient_property(u, &s->kill_context, name, message, mode, error); if (r != 0) return r; @@ -249,6 +258,8 @@ int bus_service_set_property( int bus_service_commit_properties(Unit *u) { assert(u); + unit_update_cgroup_members_masks(u); unit_realize_cgroup(u); + return 0; }