summaryrefslogtreecommitdiff
path: root/buildscripts/package_test
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2020-04-22 09:55:58 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-22 18:49:32 +0000
commit78bc718f2f87c380fca9cdb64fd7d869bde4da2d (patch)
treecf7d848b181c8753f78191ecc791312d031eb6fe /buildscripts/package_test
parent9c442e31cc9d7fda1ee51f142e61ccac21de7c7e (diff)
downloadmongo-78bc718f2f87c380fca9cdb64fd7d869bde4da2d.tar.gz
SERVER-47708 Don't install uninstallable metapackage
Diffstat (limited to 'buildscripts/package_test')
-rw-r--r--buildscripts/package_test/recipes/install_mongodb.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/package_test/recipes/install_mongodb.rb b/buildscripts/package_test/recipes/install_mongodb.rb
index 3968aa8b949..92e880bfdb8 100644
--- a/buildscripts/package_test/recipes/install_mongodb.rb
+++ b/buildscripts/package_test/recipes/install_mongodb.rb
@@ -57,7 +57,7 @@ if platform_family? 'debian'
# install the tools so we can test install_compass
execute 'install mongo tools' do
- command 'dpkg -i `find . -name "*tools*.deb"`'
+ command 'dpkg -i `find . -name "*tools-extra*.deb"`'
cwd homedir
returns [0, 1]
end
@@ -89,7 +89,7 @@ if platform_family? 'rhel'
# install the tools so we can test install_compass
execute 'install mongo tools' do
- command 'yum install -y `find . -name "*tools*.rpm"`'
+ command 'yum install -y `find . -name "*tools-extra*.rpm"`'
cwd homedir
end