1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00

MongoDB for Debian 11 Bullseye testing (and Debian Sid too?)

This commit is contained in:
A Holt 2020-10-28 17:23:46 -04:00 committed by GitHub
parent a96be1d398
commit a51fdd7aac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,11 @@
- name: Use mongodb-org's Debian repo for Debian (only amd64 support available) - name: Use mongodb-org's Debian repo for Debian (only amd64 support available)
apt_repository: 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 state: present
filename: mongodb-org filename: mongodb-org
when: is_debian and (ansible_architecture == "x86_64") when: is_debian and (ansible_architecture == "x86_64")