summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian McCarthy <brian.mccarthy@mongodb.com>2020-06-09 20:25:27 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-06-10 18:04:43 +0000
commitbdaf0cd2dbf6a009990e71c84310f0b41e9dce84 (patch)
tree382a33ffecf59a9041b6c0cf498b48167ffd456c
parent350f7a7e50a60c38ab0467232c96dd5f670726a0 (diff)
downloadmongo-bdaf0cd2dbf6a009990e71c84310f0b41e9dce84.tar.gz
SERVER-48681 Update Debian 8.1 AMI for package tests
(cherry picked from commit 3db1ed43be83ba5d407edfc9d8c8dc5a7f168ffc)
-rw-r--r--buildscripts/package_test/.kitchen.yml2
-rw-r--r--buildscripts/package_test/files/sources.list.debian84
-rw-r--r--buildscripts/package_test/recipes/install_mongodb.rb11
3 files changed, 1 insertions, 16 deletions
diff --git a/buildscripts/package_test/.kitchen.yml b/buildscripts/package_test/.kitchen.yml
index c050e17da6e..d02570164fd 100644
--- a/buildscripts/package_test/.kitchen.yml
+++ b/buildscripts/package_test/.kitchen.yml
@@ -31,7 +31,7 @@ platforms:
username: ec2-user
- name: debian81
driver:
- image_id: ami-896d85e2
+ image_id: ami-116d857a
transport:
username: admin
- name: debian92
diff --git a/buildscripts/package_test/files/sources.list.debian8 b/buildscripts/package_test/files/sources.list.debian8
deleted file mode 100644
index 0ad1174270a..00000000000
--- a/buildscripts/package_test/files/sources.list.debian8
+++ /dev/null
@@ -1,4 +0,0 @@
-deb http://archive.debian.org/debian jessie main
-deb-src http://archive.debian.org/debian jessie main
-deb http://security.debian.org/ jessie/updates main
-deb-src http://security.debian.org/ jessie/updates main
diff --git a/buildscripts/package_test/recipes/install_mongodb.rb b/buildscripts/package_test/recipes/install_mongodb.rb
index 4814d80e5a1..588847ea603 100644
--- a/buildscripts/package_test/recipes/install_mongodb.rb
+++ b/buildscripts/package_test/recipes/install_mongodb.rb
@@ -29,17 +29,6 @@ end
if platform_family? 'debian'
- # SERVER-40491 Debian 8 sources.list need to point to archive url
- if node['platform_version'] == '8.1'
- cookbook_file '/etc/apt/sources.list' do
- source 'sources.list.debian8'
- owner 'root'
- group 'root'
- mode '0644'
- action :create
- end
- end
-
execute 'apt-get update' do
command 'apt-get update'
end