Detect two more failures -- fetch timeout and runaway process (which is

really a make package timeout without output).
This commit is contained in:
Satoshi Asami 2000-09-29 11:27:19 +00:00
parent e96b5e9dbb
commit bafaa911bf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33245

View file

@ -91,6 +91,10 @@ else
else
reason="missing header"; tag="header"
fi
elif grep -q "pnohang: killing make checksum" $1; then
reason="fetch timeout"; tag="fetch-timeout"
elif grep -q "pnohang: killing make package" $1; then
reason="runaway process"; tag="runaway"
elif grep -q "cd: can't cd to" $1; then
reason="NFS"; tag="nfs"
elif grep -qE "pkg_add: (can't find enough temporary space|projected size of .* exceeds available free space)" $1; then