Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
carles-grafana committed Jan 7, 2025
1 parent e89fd56 commit 4260046
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/packaging/verify-deb-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euxo pipefail

# Install tempo and check it's running
dpkg -i ./tempo_*_linux_amd64.deb
[ "\$(systemctl is-active tempo)" = "active" ] || (echo "tempo is inactive" && exit 1)
[ "$(systemctl is-active tempo)" = "active" ] || (echo "tempo is inactive" && exit 1)

# Wait for tempo to be ready.
apt update && apt install -y curl
Expand Down
2 changes: 1 addition & 1 deletion tools/packaging/verify-rpm-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ rpm --import https://packages.grafana.com/gpg.key

# Install tempo and check it's running
rpm -i ./tempo_*_linux_amd64.rpm
[ "\$(systemctl is-active tempo)" = "active" ] || (echo "tempo is inactive" && exit 1)
[ "$(systemctl is-active tempo)" = "active" ] || (echo "tempo is inactive" && exit 1)

# Wait for tempo to be ready.
./wait-for-ready.sh

0 comments on commit 4260046

Please sign in to comment.