Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove deprecated debugapi endpoint #23

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions beelocal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,10 @@ add-hosts() {
hosts_header="# Added by beelocal\n# This entries are to expose swarm bee services inside k3d cluster to the localhost\n"
hosts_footer="\n# End of beelocal section\n"
hosts_entry="127.0.0.1\tk3d-registry.localhost geth-swap.localhost"
for ((i=0; i<2; i++)); do hosts_entry="${hosts_entry} bootnode-${i}.localhost bootnode-${i}-debug.localhost"; done
for ((i=0; i<5; i++)); do hosts_entry="${hosts_entry} bee-${i}.localhost bee-${i}-debug.localhost"; done
for ((i=0; i<2; i++)); do hosts_entry="${hosts_entry} light-${i}.localhost light-${i}-debug.localhost"; done
for ((i=0; i<2; i++)); do hosts_entry="${hosts_entry} restricted-${i}.localhost restricted-${i}-debug.localhost"; done
for ((i=0; i<2; i++)); do hosts_entry="${hosts_entry} bootnode-${i}.localhost"; done
for ((i=0; i<5; i++)); do hosts_entry="${hosts_entry} bee-${i}.localhost"; done
for ((i=0; i<2; i++)); do hosts_entry="${hosts_entry} light-${i}.localhost"; done
for ((i=0; i<2; i++)); do hosts_entry="${hosts_entry} restricted-${i}.localhost"; done
echo -e "${hosts_header}""${hosts_entry}""${hosts_footer}" | sudo tee -a /etc/hosts &> /dev/null
fi
}
Expand Down