mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 19:22:24 +00:00
mongodb/tasks/install.yml Debian revision, thanks to @jvonau's d6a3c589ca
This commit is contained in:
parent
0404855052
commit
ca4b59c3ec
1 changed files with 3 additions and 3 deletions
|
@ -72,9 +72,9 @@
|
|||
args:
|
||||
warn: false
|
||||
|
||||
- name: Use mongodb-org's Debian buster repo for Debian (only amd64 support available)
|
||||
- name: Use mongodb-org's Debian repo for Debian (only amd64 support available)
|
||||
apt_repository:
|
||||
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")
|
||||
|
@ -85,7 +85,7 @@
|
|||
repo: deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.4 multiverse
|
||||
state: present
|
||||
filename: mongodb-org
|
||||
when: (ansible_architecture == "aarch64" and is_raspbian)
|
||||
when: is_raspbian and (ansible_architecture == "aarch64")
|
||||
|
||||
- name: Use mongodb-org's Ubuntu focal repo for Linux Mint - 64bit only
|
||||
apt_repository:
|
||||
|
|
Loading…
Reference in a new issue