mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
fixes
This commit is contained in:
parent
ac16074704
commit
1d4776ac59
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@
|
||||||
groups: mongodb
|
groups: mongodb
|
||||||
home: /var/lib/mongodb
|
home: /var/lib/mongodb
|
||||||
shell: /usr/sbin/nologin
|
shell: /usr/sbin/nologin
|
||||||
when: is_raspbian and not (ansible_architecture == aarch64)
|
when: is_raspbian and not (ansible_architecture == "aarch64")
|
||||||
|
|
||||||
# OLD WAY / MUCH SLOWER: had put unnec duplicate copies in /opt/iiab/downloads/mongodb-3.0.1x
|
# OLD WAY / MUCH SLOWER: had put unnec duplicate copies in /opt/iiab/downloads/mongodb-3.0.1x
|
||||||
#
|
#
|
||||||
|
@ -110,7 +110,7 @@
|
||||||
- mongodb-org
|
- mongodb-org
|
||||||
- mongodb-org-server
|
- mongodb-org-server
|
||||||
state: present
|
state: present
|
||||||
when: (ansible_architecture == "aarch64") or ansible_architecture == "amd64")
|
when: (ansible_architecture == "aarch64") or (ansible_architecture == "amd64")
|
||||||
|
|
||||||
|
|
||||||
# 2. CONFIGURE MongoDB FOR IIAB
|
# 2. CONFIGURE MongoDB FOR IIAB
|
||||||
|
|
Loading…
Reference in a new issue