From 1297340b93d1082dcd92fb32dd769121c3dbc58f Mon Sep 17 00:00:00 2001 From: matthew-pilot Date: Sat, 30 May 2026 03:50:30 +0000 Subject: [PATCH] fix: use DNS for registry/beacon defaults in install.sh (PILOT-330) Replace hardcoded IP 34.71.57.205 with registry.pilotprotocol.network for both REGISTRY and BEACON defaults. DNS makes server address mutable without requiring client re-installation. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index f3b558fa..008dada8 100755 --- a/install.sh +++ b/install.sh @@ -57,8 +57,8 @@ set -e # error. REPO="TeoSlayer/pilotprotocol" -REGISTRY="${PILOT_REGISTRY:-34.71.57.205:9000}" -BEACON="${PILOT_BEACON:-34.71.57.205:9001}" +REGISTRY="${PILOT_REGISTRY:-registry.pilotprotocol.network:9000}" +BEACON="${PILOT_BEACON:-registry.pilotprotocol.network:9001}" PILOT_DIR="$HOME/.pilot" BIN_DIR="$PILOT_DIR/bin"