From 4c333198dbc5ce0ef8937af8d989ae918127271b Mon Sep 17 00:00:00 2001 From: linimon Date: Mon, 31 Jul 2006 20:05:12 +0000 Subject: Catch another case of 'disk full'. --- Tools/portbuild/scripts/processonelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tools/portbuild') diff --git a/Tools/portbuild/scripts/processonelog b/Tools/portbuild/scripts/processonelog index 5cd4bf92f54..c054461f899 100755 --- a/Tools/portbuild/scripts/processonelog +++ b/Tools/portbuild/scripts/processonelog @@ -90,7 +90,7 @@ elif grep -q "USER PID PPID PGID JOBC STAT TT TIME COMMAND" $1; then reason="runaway_process"; tag="runaway" elif grep -q "pnohang: killing make package" $1; then reason="runaway_process"; tag="runaway" -elif grep -qE "pkg_add:.*(can't find enough temporary space|projected size of .* exceeds available free space)" $1; then +elif grep -qE "pkg_(add|create):.*(can't find enough temporary space|projected size of .* exceeds available free space)" $1; then reason="disk_full"; tag="df" elif grep -qE '(parse error|too (many|few) arguments to|argument.*doesn.*prototype|incompatible type for argument|conflicting types for|undeclared \(first use (in |)this function\)|incorrect number of parameters|has incomplete type and cannot be initialized|error: storage size.* isn.t known)' $1; then reason="compiler_error"; tag="cc" -- cgit