summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian McCarthy <brian.mccarthy@mongodb.com>2022-04-11 16:24:50 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-04-12 17:02:07 +0000
commit15c0712952c356cb711c13a42cb3bca8617d4ebc (patch)
tree040b69af68af19f172d5725d9d394232b2a8c637
parentc106d7a5ae8cdb115f9a6e0b9f246728575b2998 (diff)
downloadmongo-15c0712952c356cb711c13a42cb3bca8617d4ebc.tar.gz
SERVER-65422 Fix package test failures on Ubuntu 16.04r4.2.20-rc0r4.2.20
(cherry picked from commit 205d3535428e49054807e13a6505eef4e28d9949)
-rw-r--r--buildscripts/package_test/recipes/install_mongodb.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/buildscripts/package_test/recipes/install_mongodb.rb b/buildscripts/package_test/recipes/install_mongodb.rb
index 25f115034eb..d9d21680b70 100644
--- a/buildscripts/package_test/recipes/install_mongodb.rb
+++ b/buildscripts/package_test/recipes/install_mongodb.rb
@@ -79,6 +79,13 @@ if platform_family? 'debian'
ENV['DEBIAN_FRONTEND'] = 'noninteractive'
package 'openssl'
+ if node['platform_version'] == '16.04'
+ execute 'update ca-certificates' do
+ command 'apt-get install -y ca-certificates'
+ live_stream true
+ end
+ end
+
# the ubuntu 16.04 image does not have some dependencies installed by default
# and it is required for the install_compass script
execute 'install dependencies' do