X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Funit.c;h=d28a0a8cf7637b461ebbe8334bc6f82a22e7ce46;hp=001d7659c430d745e26881890bc9f40ab6b5fe1c;hb=98bc20006d89aa8e7d9d3eeb75f475a66943fe55;hpb=34f0c1a118c68bbf8c6b57006c2acee2eedd1cbd diff --git a/src/unit.c b/src/unit.c index 001d7659c..d28a0a8cf 100644 --- a/src/unit.c +++ b/src/unit.c @@ -725,6 +725,42 @@ int unit_load_fragment_and_dropin_optional(Unit *u) { return 0; } +static int unit_add_one_default_dependency(Unit *u, Unit *target) { + assert(u); + assert(target); + + if (target->meta.type != UNIT_TARGET) + return 0; + + /* Don't create loops */ + if (set_get(target->meta.dependencies[UNIT_BEFORE], u)) + return 0; + + return unit_add_dependency(target, UNIT_AFTER, u, true); +} + +static int unit_add_default_dependencies(Unit *u) { + Unit *other; + Iterator i; + int r; + + assert(u); + + SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY], i) + if ((r = unit_add_one_default_dependency(u, other)) < 0) + return r; + + SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY_OVERRIDABLE], i) + if ((r = unit_add_one_default_dependency(u, other)) < 0) + return r; + + SET_FOREACH(other, u->meta.dependencies[UNIT_WANTED_BY], i) + if ((r = unit_add_one_default_dependency(u, other)) < 0) + return r; + + return 0; +} + int unit_load(Unit *u) { int r; @@ -750,6 +786,11 @@ int unit_load(Unit *u) { goto fail; } + if (u->meta.load_state == UNIT_LOADED && + u->meta.default_dependencies) + if ((r = unit_add_default_dependencies(u)) < 0) + goto fail; + assert((u->meta.load_state != UNIT_MERGED) == !u->meta.merged_into); unit_add_to_dbus_queue(unit_follow_merge(u));