From e89fd5684427fe2aaa4a72d97907e3c5ae6ab174 Mon Sep 17 00:00:00 2001 From: Carles Garcia Cabot Date: Tue, 7 Jan 2025 14:52:14 +0100 Subject: [PATCH] test --- tools/packaging/verify-deb-install.sh | 2 +- tools/packaging/verify-rpm-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.