Update dsmon.sh

This commit is contained in:
2025-06-14 15:15:15 -05:00
parent 9d55b61743
commit 98b0d61d09

View File

@@ -148,7 +148,7 @@ CHECK(){
fi
started_hosts=0
for hostname in "${hostnames_sort[@]}"; do
# while [ $(jobs -rp | wc -l) -ge 15 ]; do sleep 0.5; done
while [ $(jobs -rp | wc -l) -ge 15 ]; do sleep 0.5; done
unbuffer bash -c "/usr/local/bin/dsmon runcheck '${hostname}'" > /tmp/dscheck.${hostname}.results &
((started_hosts++))
[ "${1}" != "report" ] && printf "\r${idsCL[LightCyan]}${MSG}${spc}: Started on %d of %d hosts %s${idsCL[Default]}" "${started_hosts}" "${#hostnames_sort[@]}" $([[ "$started_hosts" -lt "${#hostnames_sort[@]}" ]] && echo " ..." || echo "")