summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2024-03-01 07:52:37 -0500
committerGitHub <noreply@github.com>2024-03-01 07:52:37 -0500
commitccb10a5fdeddeab785ffa697000bd8ae6a2d9b7a (patch)
treeabf4dd418d6a44c4e3a8dae4936207a5a81718f0
parent1c3bc68a882a77cfc88dcb72b65fb275c0412111 (diff)
Improve message in kickstart if a static build can’t be found. (#17081)
Given our current platform support spread, it’s far more likely that the user’s system has networking issues preventing access to GitHub than that they happen to be trying to install on a platform we don’t provide static builds for.
-rwxr-xr-xpackaging/installer/kickstart.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/installer/kickstart.sh b/packaging/installer/kickstart.sh
index 53d94fa14c..04b34fd77f 100755
--- a/packaging/installer/kickstart.sh
+++ b/packaging/installer/kickstart.sh
@@ -1667,7 +1667,7 @@ try_static_install() {
netdata_agent="${NETDATA_STATIC_ARCHIVE_OLD_NAME}"
export NETDATA_STATIC_ARCHIVE_URL="${NETDATA_STATIC_ARCHIVE_OLD_URL}"
else
- warning "There is no static build available for ${SYSARCH} CPUs. This usually means we simply do not currently provide static builds for ${SYSARCH} CPUs."
+ warning "Could not find a ${SELECTED_RELEASE_CHANNEL} static build for ${SYSARCH} CPUs. This usually means there is some networking issue preventing access to https://github.com/ from this system."
return 2
fi