Skip to content

Commit

Permalink
Pmm3 fix client for release version (#113)
Browse files Browse the repository at this point in the history
* Updates to fix client version
  • Loading branch information
saikumar-vs authored Jan 31, 2025
1 parent a32f367 commit 74d03b3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pmm_qa/pmm3-client-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,8 @@ if [[ "$client_version" == "pmm3-latest" ]]; then
fi

## Only supported for debian based systems for now
if [[ "$client_version" =~ ^"3." ]]; then
## Note: only experimental packages are present atm.
wget -O pmm-client.deb https://repo.percona.com/pmm3-client/apt/pool/experimental/p/pmm-client/pmm-client_${client_version}-6.$(lsb_release -sc)_amd64.deb
if [[ "$client_version" =~ ^3\.[0-9]+\.[0-9]+$ ]]; then
wget -O pmm-client.deb https://repo.percona.com/pmm3-client/apt/pool/main/p/pmm-client/pmm-client_${client_version}-7.$(lsb_release -sc)_amd64.deb
dpkg -i pmm-client.deb
fi

Expand Down

0 comments on commit 74d03b3

Please sign in to comment.