diff options
Diffstat (limited to 'bin/build-master-status')
-rwxr-xr-x | bin/build-master-status | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bin/build-master-status b/bin/build-master-status index 7827ab5..611bc6c 100755 --- a/bin/build-master-status +++ b/bin/build-master-status @@ -131,6 +131,14 @@ broken="$( ls "${work_dir}/package-states/" | \ grep -c '\.broken$' )" || true +blocked="$( + ls "${work_dir}/package-states/" | \ + grep -c '\.blocked$' + )" || true +locked="$( + ls "${work_dir}/package-states/" | \ + grep -c '\.locked$' + )" || true loops="$( ls "${work_dir}/build-list.loops" | \ grep -c '^loop_[0-9]\+$' @@ -206,7 +214,9 @@ if [ -n "${statistics_output}" ]; then "${testing}" \ "${broken}" \ "${loops}" \ - "${looped_packages}" | \ + "${looped_packages}" \ + "${locked}" \ + "${blocked}" | \ sed 's| $|\n|' ) | \ tail -n 10080 | \ |