aboutsummaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2004-07-14 16:30:34 +0800
committerkris <kris@FreeBSD.org>2004-07-14 16:30:34 +0800
commitef5bc1ef2658ff799c34ff8c17848de52f36f6c6 (patch)
tree95ff5071a4b85075086f15d87f156359af84c331 /Tools
parent026666338f1b2e19cf59b925d7c5af2934f70977 (diff)
downloadfreebsd-ports-gnome-ef5bc1ef2658ff799c34ff8c17848de52f36f6c6.tar.gz
freebsd-ports-gnome-ef5bc1ef2658ff799c34ff8c17848de52f36f6c6.tar.zst
freebsd-ports-gnome-ef5bc1ef2658ff799c34ff8c17848de52f36f6c6.zip
* If we time out connecting to a machine, give it a weight of 999 to make
sure we don't try and schedule jobs on it even if all other machines are busy * Remove sleep in outer loop, this isn't needed or worthwhile now that there are so many machines being monitored
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/checkmachines4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/portbuild/scripts/checkmachines b/Tools/portbuild/scripts/checkmachines
index e675800767df..8ec988a8631e 100755
--- a/Tools/portbuild/scripts/checkmachines
+++ b/Tools/portbuild/scripts/checkmachines
@@ -40,7 +40,8 @@ while true; do
num=99
fi
else
- num=99
+ # Don't ever want to list machines we couldn't connect to
+ num=999
fi
num=$(($num / $l))
@@ -58,5 +59,4 @@ while true; do
echo "$mach" > ${buildroot}/${i}/ulist
done
- sleep 15
done