Commit 5ac1151c authored by Quinton Hoole's avatar Quinton Hoole

Merge pull request #9251 from satnam6502/fix-node-list

Fix node numbers for node list
parents 70f78aa5 a1c2641b
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment