]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
base/init: re-add initqueue-finished
authorHarald Hoyer <harald@redhat.com>
Wed, 10 Nov 2010 20:27:33 +0000 (21:27 +0100)
committerHarald Hoyer <harald@redhat.com>
Wed, 10 Nov 2010 20:27:33 +0000 (21:27 +0100)
modules.d/99base/init

index 1a1a0e5c681ec2cd47a99fa8de2a25f0fd251f60..ef96918e9f09aa1632f0f999ae730a04e6a44b03 100755 (executable)
@@ -187,6 +187,14 @@ while :; do
 
     $UDEV_QUEUE_EMPTY >/dev/null 2>&1 || continue
 
+    for job in /initqueue-settled/*.sh; do
+        [ -e "$job" ] || break
+        job=$job . $job
+        check_finished && break 2
+    done
+
+    $UDEV_QUEUE_EMPTY >/dev/null 2>&1 || continue
+
     # no more udev jobs and queues empty.
     sleep 0.5