summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2021-07-06 20:23:09 -0700
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-07-07 16:12:42 +0000
commit12797e8c4aa195727d853f8518fd155e76d1ff6e (patch)
treea2a69514d9a155e7950611afa085ba3a83404970
parent14fb0899e131721ba80a2cc921cdb9b7d6f3dafa (diff)
downloadmongo-12797e8c4aa195727d853f8518fd155e76d1ff6e.tar.gz
SERVER-58313 Fix package testing for SLES 12 on v4.2 and v4.0
SERVER-55460 attempted to fix SLES 12 package testing, but it continued to fail on v4.2 and v4.0. We thought it was due to a recent SLES 12 package testing image change, but that wasn't actually the case. It was actually because the `-tools-extra` package doesn't exist in those version, and we should have been testing the `-tools` package instead. This commit fixes the previous backport so the correct package is tested. (cherry picked from commit 9719315b5a0eb5a954bc3b68e0ea7cad65b63ee2)
-rw-r--r--buildscripts/package_test/recipes/install_mongodb.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/package_test/recipes/install_mongodb.rb b/buildscripts/package_test/recipes/install_mongodb.rb
index af929fb9aa7..8f4fa0b84d7 100644
--- a/buildscripts/package_test/recipes/install_mongodb.rb
+++ b/buildscripts/package_test/recipes/install_mongodb.rb
@@ -111,7 +111,7 @@ if platform_family? 'suse'
end
execute 'install mongo tools' do
- command 'zypper --no-gpg-checks -n install `find . -name "*tools-extra*.rpm"`'
+ command 'zypper --no-gpg-checks -n install `find . -name "*tools*.rpm"`'
live_stream true
cwd homedir
end