1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #3025 from holta/mongodb-update

mongodb/tasks/install.yml: bionic -> focal apt source repo for 64-bit RasPiOS Bullseye (aarch64 only for now)
This commit is contained in:
A Holt 2021-11-11 11:20:47 -05:00 committed by GitHub
commit 2b75afbbf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,9 +82,9 @@
when: is_debian and (ansible_architecture == "x86_64")
# Debian 10 aarch64 might work below but is blocked in main.yml
- name: Use mongodb-org's Ubuntu bionic repo for RaspOS-aarch64
- name: Use mongodb-org's Ubuntu focal repo for RasPiOS-aarch64
apt_repository:
repo: deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.4 multiverse
repo: deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse
state: present
filename: mongodb-org
when: is_raspbian and (ansible_architecture == "aarch64")