From 90a033ffa15e8a1c2ca9018534f873fe0cfc0f0c Mon Sep 17 00:00:00 2001 From: Alexander Neben Date: Fri, 13 May 2022 01:10:38 +0000 Subject: SERVER-64352 mongo shell no longer built by default --- .../package_test/recipes/install_mongodb.rb | 40 ---------------------- .../test/recipes/service/install_mongodb_spec.rb | 22 ------------ 2 files changed, 62 deletions(-) (limited to 'buildscripts/package_test') diff --git a/buildscripts/package_test/recipes/install_mongodb.rb b/buildscripts/package_test/recipes/install_mongodb.rb index 1e857627f1e..d57546ce6b9 100644 --- a/buildscripts/package_test/recipes/install_mongodb.rb +++ b/buildscripts/package_test/recipes/install_mongodb.rb @@ -92,12 +92,6 @@ if platform_family? 'debian' command 'apt update && apt -y -f install' live_stream true end - - execute 'install mongo shell' do - command 'dpkg -i `find . -name "*shell*.deb"`' - live_stream true - cwd homedir - end end if platform_family? 'rhel' or platform_family? 'amazon' @@ -118,12 +112,6 @@ if platform_family? 'rhel' or platform_family? 'amazon' live_stream true cwd homedir end - - execute 'install mongo shell' do - command 'yum install -y `find . -name "*shell*.rpm"`' - live_stream true - cwd homedir - end end if platform_family? 'suse' @@ -155,32 +143,4 @@ if platform_family? 'suse' live_stream true cwd homedir end - - execute 'install mongo' do - command 'zypper --no-gpg-checks -n install `find . -name "*shell*.rpm"`' - live_stream true - cwd homedir - end -end - -inspec_wait = <