From: Lennart Poettering Date: Tue, 19 May 2015 17:09:03 +0000 (+0200) Subject: core: don't consider boot-up finished if we are still reloading X-Git-Tag: v220~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aad1976ffa25fa6901f72c300b5980ada0ef44c5;p=thirdparty%2Fsystemd.git core: don't consider boot-up finished if we are still reloading http://lists.freedesktop.org/archives/systemd-devel/2015-May/032025.html --- diff --git a/src/core/manager.c b/src/core/manager.c index e889ebe1f1c..5af5ce3b73a 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -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)