From a51fdd7aacce06d5ab84656c6195b92906795cdb Mon Sep 17 00:00:00 2001 From: A Holt Date: Wed, 28 Oct 2020 17:23:46 -0400 Subject: [PATCH] MongoDB for Debian 11 Bullseye testing (and Debian Sid too?) --- roles/mongodb/tasks/install.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/roles/mongodb/tasks/install.yml b/roles/mongodb/tasks/install.yml index 7d0bad888..8a858b310 100644 --- a/roles/mongodb/tasks/install.yml +++ b/roles/mongodb/tasks/install.yml @@ -74,7 +74,11 @@ - name: Use mongodb-org's Debian repo for Debian (only amd64 support available) apt_repository: - repo: deb http://repo.mongodb.org/apt/debian {{ ansible_distribution_release }}/mongodb-org/4.4 main + # 2020-10-28: http://repo.mongodb.org/apt/debian/dists/ supports only + # {buster 10, stretch 9, jessie 8, wheezy 7} + # so Debian 11 "Bullseye" (testing branch) can revert to buster for now: + repo: deb http://repo.mongodb.org/apt/debian buster/mongodb-org/4.4 main + #repo: deb http://repo.mongodb.org/apt/debian {{ ansible_distribution_release }}/mongodb-org/4.4 main state: present filename: mongodb-org when: is_debian and (ansible_architecture == "x86_64")