Fix node numbers for node list

This commit is contained in:
Satnam Singh 2015-06-04 12:09:58 +01:00
parent a161edb396
commit a1c2641b53

View File

@ -58,7 +58,9 @@ while true; do
fi
done
echo "Found ${found} nodes."
cat -n "${MINIONS_FILE}"
echo -n " "
head -n 1 "${MINIONS_FILE}"
tail -n +2 "${MINIONS_FILE}" | cat -n
attempt=0
while true; do