X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Ftarget.c;h=a73a98987633dc4bef2c4698702a11c7133a8011;hb=26742b3fd8776c6c64e3c1035adc2599ddeb76d1;hp=c350d8fa195bc2844a5b392758bb642e281c06ac;hpb=b2bb3dbed9607c440b1a9ccacc515e28136d39ae;p=elogind.git diff --git a/src/target.c b/src/target.c index c350d8fa1..a73a98987 100644 --- a/src/target.c +++ b/src/target.c @@ -49,7 +49,7 @@ static void target_set_state(Target *t, TargetState state) { target_state_to_string(old_state), target_state_to_string(state)); - unit_notify(UNIT(t), state_translation_table[old_state], state_translation_table[state]); + unit_notify(UNIT(t), state_translation_table[old_state], state_translation_table[state], true); } static int target_add_default_dependencies(Target *t) { @@ -57,25 +57,27 @@ static int target_add_default_dependencies(Target *t) { Unit *other; int r; + assert(t); + /* Imply ordering for requirement dependencies on target * units. Note that when the user created a contradicting * ordering manually we won't add anything in here to make * sure we don't create a loop. */ SET_FOREACH(other, t->meta.dependencies[UNIT_REQUIRES], i) - if (!set_get(t->meta.dependencies[UNIT_BEFORE], other)) - if ((r = unit_add_dependency(UNIT(t), UNIT_AFTER, other, true)) < 0) - return r; + if ((r = unit_add_default_target_dependency(other, UNIT(t))) < 0) + return r; + SET_FOREACH(other, t->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i) - if (!set_get(t->meta.dependencies[UNIT_BEFORE], other)) - if ((r = unit_add_dependency(UNIT(t), UNIT_AFTER, other, true)) < 0) - return r; + if ((r = unit_add_default_target_dependency(other, UNIT(t))) < 0) + return r; + SET_FOREACH(other, t->meta.dependencies[UNIT_WANTS], i) - if (!set_get(t->meta.dependencies[UNIT_BEFORE], other)) - if ((r = unit_add_dependency(UNIT(t), UNIT_AFTER, other, true)) < 0) - return r; + if ((r = unit_add_default_target_dependency(other, UNIT(t))) < 0) + return r; - return 0; + /* Make sure targets are unloaded on shutdown */ + return unit_add_dependency_by_name(UNIT(t), UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true); } static int target_add_getty_dependencies(Target *t) {