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

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 09:50:42 -05:00 committed by GitHub
parent c65cc9bbbd
commit 1c2835b9c9
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")