diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-11-14 23:47:53 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-11-14 23:48:21 +0100 |
commit | 6210e7fc31e14159627144f7409eadd3ce0d72b9 (patch) | |
tree | b4510ab2477bdb0fa1df3dbefa91f1b01846c451 /src/unit.c | |
parent | 9381a72403f622f66294ab10315240a4c4fd71cd (diff) |
manager: always pull 'following' units into transaction
Diffstat (limited to 'src/unit.c')
-rw-r--r-- | src/unit.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/unit.c b/src/unit.c index ee1dc85d50..b3a8210a57 100644 --- a/src/unit.c +++ b/src/unit.c @@ -2319,6 +2319,18 @@ int unit_kill(Unit *u, KillWho w, KillMode m, int signo, DBusError *error) { return UNIT_VTABLE(u)->kill(u, w, m, signo, error); } + +int unit_following_set(Unit *u, Set **s) { + assert(u); + assert(s); + + if (UNIT_VTABLE(u)->following_set) + return UNIT_VTABLE(u)->following_set(u, s); + + *s = NULL; + return 0; +} + static const char* const unit_load_state_table[_UNIT_LOAD_STATE_MAX] = { [UNIT_STUB] = "stub", [UNIT_LOADED] = "loaded", |