summaryrefslogtreecommitdiff
path: root/src/timer.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-10-29 06:04:03 +0200
committerLennart Poettering <lennart@poettering.net>2010-10-29 16:28:29 +0200
commit2a77d31df976c3934e3b38a9e61c000ec9a8acc2 (patch)
tree82a55d10ca4c425036000c685fb4a5009009fd71 /src/timer.c
parentc7d78a567950eff7c2c75af9f6b97904cfa3d039 (diff)
units: order units by default before appropriate targets in case they are pulled indirectly
Diffstat (limited to 'src/timer.c')
-rw-r--r--src/timer.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/timer.c b/src/timer.c
index 065e9c14db..6f1f02ddbc 100644
--- a/src/timer.c
+++ b/src/timer.c
@@ -78,9 +78,13 @@ static int timer_add_default_dependencies(Timer *t) {
assert(t);
- if (t->meta.manager->running_as == MANAGER_SYSTEM)
+ if (t->meta.manager->running_as == MANAGER_SYSTEM) {
+ if ((r = unit_add_dependency_by_name(UNIT(t), UNIT_BEFORE, SPECIAL_BASIC_TARGET, NULL, true)) < 0)
+ return r;
+
if ((r = unit_add_two_dependencies_by_name(UNIT(t), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SYSINIT_TARGET, NULL, true)) < 0)
return r;
+ }
return unit_add_two_dependencies_by_name(UNIT(t), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true);
}