]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
sleep 0.5 seconds instead of 1
authorHarald Hoyer <harald@redhat.com>
Tue, 24 Mar 2009 10:35:52 +0000 (11:35 +0100)
committerHarald Hoyer <harald@redhat.com>
Tue, 24 Mar 2009 10:35:52 +0000 (11:35 +0100)
modules.d/99base/init

index d3b6bc2ccfee76d5074ebca8f1610ea65eb269a5..fbfad05c15db8728e8407073d6504f6670265339 100755 (executable)
@@ -77,11 +77,11 @@ while :; do
        [ "$ROOTFS_MOUNTED" ] && break;
     done
 
-    sleep 1
+    sleep 0.5
     i=$(($i+1))
     (
        flock -s 200
-       [ $i -gt 10 ] && emergency_shell
+       [ $i -gt 20 ] && emergency_shell
     ) 200>/.console_lock
 done