chiark / gitweb /
scope: make TimeoutStopUSec= settable for transient units
authorLennart Poettering <lennart@poettering.net>
Mon, 1 Jul 2013 23:34:04 +0000 (01:34 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 1 Jul 2013 23:48:55 +0000 (01:48 +0200)
src/core/dbus-scope.c

index bddf8f4753ca57332f572922a21a6d7d6462075c..0205cfff6e0c6ee178a59052f50989a542eedcaf 100644 (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;