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 17:33:37 +0000
commit3db1ed43be83ba5d407edfc9d8c8dc5a7f168ffc (patch)
tree3460402d40ef0f13ccf346312129e2aa79754ce0
parentbafd10233ae480b8c98ff212658a9d003a741da7 (diff)
downloadmongo-3db1ed43be83ba5d407edfc9d8c8dc5a7f168ffc.tar.gz
SERVER-48681 Update Debian 8.1 AMI for package tests
-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 16bdd4df6ac..aa914c5645d 100644
--- a/buildscripts/package_test/.kitchen.yml
+++ b/buildscripts/package_test/.kitchen.yml
@@ -41,7 +41,7 @@ platforms:
username: admin
- 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 3968aa8b949..a049373d03c 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