diff options
Diffstat (limited to 'bin/runtest')
-rwxr-xr-x | bin/runtest | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/runtest b/bin/runtest index 437e896..f502a27 100755 --- a/bin/runtest +++ b/bin/runtest @@ -676,8 +676,11 @@ fi ################################# # Show some host status numbers ################################# -df +# df sometimes hangs due to file system problems. Invoke it as background +# process and give it 10 seconds to finish. If it hangs, just continue. uptime +df & +sleep 10 ################################# # Setup test host(s) |