From 85046bb62a23c0c5372f1bfac13ba78001c917a6 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Mon, 28 Jul 2025 19:25:58 +1000 Subject: [PATCH] fixup emqx.sh --- ct/emqx.sh | 4 ++-- install/emqx-install.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ct/emqx.sh b/ct/emqx.sh index 899406283..99982c7d8 100644 --- a/ct/emqx.sh +++ b/ct/emqx.sh @@ -35,8 +35,8 @@ function update_script() { msg_ok "Removed old EMQX" msg_info "Downloading EMQX v${RELEASE}" - DEB_FILE="/tmp/emqx-enterprise-${RELEASE}-debian12-amd64.deb" - curl -fsSL -o "$DEB_FILE" "https://www.emqx.com/en/downloads/enterprise/v${RELEASE}/emqx-enterprise-${RELEASE}-debian12-amd64.deb" + DEB_FILE="/tmp/emqx-enterprise-${RELEASE}-debian12-arm64.deb" + curl -fsSL -o "$DEB_FILE" "https://www.emqx.com/en/downloads/enterprise/v${RELEASE}/emqx-enterprise-${RELEASE}-debian12-arm64.deb" msg_ok "Downloaded EMQX" msg_info "Installing EMQX" diff --git a/install/emqx-install.sh b/install/emqx-install.sh index 991ba8748..6f09ea740 100644 --- a/install/emqx-install.sh +++ b/install/emqx-install.sh @@ -25,8 +25,8 @@ if [[ -z "$LATEST_VERSION" ]]; then fi msg_ok "Latest version: v$LATEST_VERSION" -DOWNLOAD_URL="https://www.emqx.com/en/downloads/enterprise/v$LATEST_VERSION/emqx-enterprise-${LATEST_VERSION}-debian12-amd64.deb" -DEB_FILE="/tmp/emqx-enterprise-${LATEST_VERSION}-debian12-amd64.deb" +DOWNLOAD_URL="https://www.emqx.com/en/downloads/enterprise/v$LATEST_VERSION/emqx-enterprise-${LATEST_VERSION}-debian12-arm64.deb" +DEB_FILE="/tmp/emqx-enterprise-${LATEST_VERSION}-debian12-arm64.deb" msg_info "Downloading EMQX v$LATEST_VERSION" $STD curl -fsSL -o "$DEB_FILE" "$DOWNLOAD_URL"