Skip to content

Commit

Permalink
Fix dns server address in dig command
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Jan 15, 2025
1 parent ebd6e48 commit d71774d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cluster/scripts/start-client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ echo $overcommitment_hugepages >/proc/sys/vm/nr_overcommit_hugepages

# Add alias for ssh-ing to sbx
echo '_sbx_ssh() {
local address=$(dig @localhost $1. A +short 2>/dev/null)
local address=$(dig @127.0.0.4 $1. A +short 2>/dev/null)
ssh -o StrictHostKeyChecking=accept-new "root@$address"
}
Expand Down

0 comments on commit d71774d

Please sign in to comment.