summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-09-21 19:56:15 +0200
committerLennart Poettering <lennart@poettering.net>2011-09-21 19:57:27 +0200
commit57981b98123a6504c68981c7e3cd43f7cc1668f7 (patch)
treed86a2da1572d6d943555e9a9f6f6ad2a1787fcea
parentf957632b960a0a42999b38ded7089fa602b41745 (diff)
job: after converting a job from restart to start readd it to run queue
When we converted a restart job it's time to look again whether any of its dependencies are now runnable. https://bugzilla.redhat.com/show_bug.cgi?id=735013
-rw-r--r--src/job.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/job.c b/src/job.c
index 26e1a7ce99..5c0913b7d8 100644
--- a/src/job.c
+++ b/src/job.c
@@ -544,7 +544,9 @@ int job_finish_and_invalidate(Job *j, JobResult result) {
j->type = JOB_START;
job_add_to_run_queue(j);
- return 0;
+
+ u = j->unit;
+ goto finish;
}
j->result = result;
@@ -613,6 +615,7 @@ int job_finish_and_invalidate(Job *j, JobResult result) {
unit_trigger_on_failure(u);
}
+finish:
/* Try to start the next jobs that can be started */
SET_FOREACH(other, u->meta.dependencies[UNIT_AFTER], i)
if (other->meta.job)