diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-11-30 17:05:39 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-11-30 17:05:39 +0100 |
commit | ea6dee2ce375a5db597c3decb2dd6c7c6871cdb0 (patch) | |
tree | 9add280548ab06326e228e0de8dab0ec4205b65a /bin | |
parent | 2243825acf8c6bef763ec79fdc502aa7f713200c (diff) | |
download | jenkins.debian.net-ea6dee2ce375a5db597c3decb2dd6c7c6871cdb0.tar.xz |
reproducible: schedule more old packages, to schedule less often
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_scheduler.sh b/bin/reproducible_scheduler.sh index 5922e0ad..2305b134 100755 --- a/bin/reproducible_scheduler.sh +++ b/bin/reproducible_scheduler.sh @@ -173,7 +173,7 @@ if [ $TOTAL -le 250 ] ; then elif [ $TOTAL -le 450 ] ; then NEW=25 fi -echo "Requesting $NEW new packages..." +echo "Requesting $NEW new versions..." select_new_versions $NEW let "TOTAL=$TOTAL+$AMOUNT" echo "So in total now $TOTAL packages about to be scheduled." @@ -181,9 +181,9 @@ ALL_PACKAGES="$ALL_PACKAGES $PACKAGES" MESSAGE="$MESSAGE, $AMOUNT packages with new versions" if [ $TOTAL -lt 250 ] ; then + OLD=200 +elif [ $TOTAL -le 350 ] ; then OLD=100 -elif [ $TOTAL -le 50 ] ; then - OLD=5 else OLD=1 fi |