summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-07-14 08:30:34 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-07-14 08:30:34 +0000
commit592c7046255844c7a07eb9992381897347cccb6d (patch)
treef9057ca16c964cde94acee7f2bc3dfdc6cae99b4 /Tools
parentChase bento to pointyhat (diff)
* 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
Notes
Notes: svn path=/head/; revision=113605
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