diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-02-03 19:07:40 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-02-03 19:07:40 +0100 |
commit | 261420ba2a20305ad271b6f5f380aa74c5c9dd50 (patch) | |
tree | 5ea4c7885fd372d957c9d0f2990591d8d8c111b2 | |
parent | d69a7ceaed77992105342a056fe68769c2e6d3bd (diff) |
core: open up DefaultDependencies= property for transient units
-rw-r--r-- | src/core/dbus-unit.c | 14 | ||||
-rw-r--r-- | src/libsystemd/sd-bus/bus-util.c | 3 |
2 files changed, 15 insertions, 2 deletions
diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c index fe876b3ffe..625d21ab8b 100644 --- a/src/core/dbus-unit.c +++ b/src/core/dbus-unit.c @@ -898,6 +898,20 @@ static int bus_unit_set_transient_property( return 1; + } else if (streq(name, "DefaultDependencies")) { + int b; + + r = sd_bus_message_read(message, "b", &b); + if (r < 0) + return r; + + if (mode != UNIT_CHECK) { + u->default_dependencies = b; + unit_write_drop_in_format(u, mode, name, "[Unit]\nDefaultDependencies=%s\n", yes_no(b)); + } + + return 1; + } else if (streq(name, "Slice") && unit_get_cgroup_context(u)) { const char *s; diff --git a/src/libsystemd/sd-bus/bus-util.c b/src/libsystemd/sd-bus/bus-util.c index bb08e387c4..c9d8713b25 100644 --- a/src/libsystemd/sd-bus/bus-util.c +++ b/src/libsystemd/sd-bus/bus-util.c @@ -1371,8 +1371,7 @@ int bus_append_unit_property_assignment(sd_bus_message *m, const char *assignmen if (STR_IN_SET(field, "CPUAccounting", "MemoryAccounting", "BlockIOAccounting", - "SendSIGHUP", "SendSIGKILL", - "WakeSystem")) { + "SendSIGHUP", "SendSIGKILL", "WakeSystem", "DefaultDependencies")) { r = parse_boolean(eq); if (r < 0) { |