summaryrefslogtreecommitdiff
path: root/buildscripts/package_test
diff options
context:
space:
mode:
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