mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
wording and ordering
This commit is contained in:
parent
1bea516fea
commit
287307fb98
1 changed files with 10 additions and 10 deletions
|
@ -71,7 +71,7 @@
|
|||
args:
|
||||
warn: false
|
||||
|
||||
- name: Add mongodb repo for Debian 10 (only amd64 support available)
|
||||
- name: Use mongodb-org's Debian buster repo for Debian 10 (only amd64 support available)
|
||||
apt_repository:
|
||||
repo: deb http://repo.mongodb.org/apt/debian buster/mongodb-org/4.4 main
|
||||
state: present
|
||||
|
@ -79,27 +79,27 @@
|
|||
when: is_debian_10 and (ansible_architecture == "x86_64")
|
||||
|
||||
# Debian 10 aarch64 might work below but is blocked in main.yml
|
||||
- name: Add mongodb repo for RaspOS-aarch64
|
||||
- name: Use mongodb-org's Ubuntu bionic repo for RaspOS-aarch64
|
||||
apt_repository:
|
||||
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_10)
|
||||
|
||||
- name: Add mongodb repo for Ubuntu 64bit only
|
||||
apt_repository:
|
||||
repo: deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu {{ ansible_distribution_release }}/mongodb-org/4.4 multiverse
|
||||
state: present
|
||||
filename: mongodb-org
|
||||
when: is_ubuntu and not is_mint
|
||||
|
||||
- name: Add mongodb repo for Mint 64bit only
|
||||
- name: Use mongodb-org's Ubuntu focal repo for Mint 20 - 64bit only
|
||||
apt_repository:
|
||||
repo: deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse
|
||||
state: present
|
||||
filename: mongodb-org
|
||||
when: is_mint_20
|
||||
|
||||
- name: Use mongodb-org's Ubuntu repo for Ubuntu all - 64bit only
|
||||
apt_repository:
|
||||
repo: deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu {{ ansible_distribution_release }}/mongodb-org/4.4 multiverse
|
||||
state: present
|
||||
filename: mongodb-org
|
||||
when: is_ubuntu and not is_mint
|
||||
|
||||
- name: "Install packages: mongodb-org, mongodb-org-server"
|
||||
package:
|
||||
name:
|
||||
|
|
Loading…
Reference in a new issue