1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 11:55:44 +03:00

scope: make TimeoutStopUSec= settable for transient units

This commit is contained in:
Lennart Poettering 2013-07-02 01:34:04 +02:00
parent eb2059d897
commit cc23f9f174

View File

@ -126,6 +126,21 @@ static int bus_scope_set_transient_property(
return -EINVAL;
return 1;
} else if (streq(name, "TimeoutStopUSec")) {
if (dbus_message_iter_get_arg_type(i) != DBUS_TYPE_UINT64)
return -EINVAL;
if (mode != UNIT_CHECK) {
uint64_t t;
dbus_message_iter_get_basic(i, &t);
s->timeout_stop_usec = t;
}
return 1;
}
return 0;