diff --git a/tools/packaging/verify-deb-install.sh b/tools/packaging/verify-deb-install.sh index d93415115fb..069f109f013 100755 --- a/tools/packaging/verify-deb-install.sh +++ b/tools/packaging/verify-deb-install.sh @@ -3,7 +3,7 @@ set -euxo pipefail # Install tempo and check it's running -dpkg -i ./tempo_*_linux_arm64.deb +dpkg -i ./tempo_*_linux_amd64.deb [ "\$(systemctl is-active tempo)" = "active" ] || (echo "tempo is inactive" && exit 1) # Wait for tempo to be ready. diff --git a/tools/packaging/verify-rpm-install.sh b/tools/packaging/verify-rpm-install.sh index 44443dc2815..833e8556231 100755 --- a/tools/packaging/verify-rpm-install.sh +++ b/tools/packaging/verify-rpm-install.sh @@ -6,7 +6,7 @@ set -euxo pipefail rpm --import https://packages.grafana.com/gpg.key # Install tempo and check it's running -rpm -i ./tempo_*_linux_arm64.rpm +rpm -i ./tempo_*_linux_amd64.rpm [ "\$(systemctl is-active tempo)" = "active" ] || (echo "tempo is inactive" && exit 1) # Wait for tempo to be ready.