From b401e1fb9df7ea8b0fd26e16d886056a5ae7c5d9 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 3 Sep 2010 01:42:19 +0200 Subject: target: implicitly shutdown targets on shutdown, so that they are pulled into the final transaction and may be used for synchronization --- src/target.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/target.c b/src/target.c index c350d8fa19..1118693a39 100644 --- a/src/target.c +++ b/src/target.c @@ -75,7 +75,8 @@ static int target_add_default_dependencies(Target *t) { if ((r = unit_add_dependency(UNIT(t), UNIT_AFTER, other, true)) < 0) return r; - return 0; + /* Make sure targets are unloaded on shutdown */ + return unit_add_dependency_by_name(UNIT(t), UNIT_CONFLICTED_BY, SPECIAL_SHUTDOWN_TARGET, NULL, true); } static int target_add_getty_dependencies(Target *t) { -- cgit v1.2.3-54-g00ecf