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

Merge branch 'mongodb-for-deb11' of https://github.com/holta/iiab

This commit is contained in:
root 2020-10-28 17:58:15 -04:00
commit babcd0da2e

View file

@ -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")