Generalize net/ from leader/validator to bootstrap-fullnode/fullnode

This commit is contained in:
Michael Vines
2018-12-05 16:40:08 -08:00
parent b880dafe28
commit 04a0652614
8 changed files with 130 additions and 122 deletions

View File

@ -49,12 +49,12 @@ printNode() {
printf " %-25s | For logs run: $0 $ip tail -f solana/$nodeType.log\n" "$0 $ip"
}
echo Leader:
printNode leader "$leaderIp"
echo Bootstrap full node:
printNode fullnode "$bootstrapFullNodeIp"
echo
echo Validators:
for ipAddress in "${validatorIpList[@]}"; do
printNode validator "$ipAddress"
echo Additional full nodes:
for ipAddress in "${additionalFullNodeIps[@]}"; do
printNode fullnode "$ipAddress"
done
echo
echo Clients: