core: don't consider boot-up finished if we are still reloading

http://lists.freedesktop.org/archives/systemd-devel/2015-May/032025.html
This commit is contained in:
Lennart Poettering 2015-05-19 19:09:03 +02:00
parent 6d9bad91d7
commit aad1976ffa
1 changed files with 3 additions and 0 deletions

View File

@ -2703,6 +2703,9 @@ void manager_check_finished(Manager *m) {
assert(m);
if (m->n_reloading > 0)
return;
if (hashmap_size(m->jobs) > 0) {
if (m->jobs_in_progress_event_source)