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

Internetarchive - correct mistake in new tasks/main.yml

This commit is contained in:
Mitra Ardron 2019-10-05 07:47:41 +10:00
parent 07bc6262a2
commit e6c72d8957

View file

@ -3,7 +3,7 @@
- name: FAIL (STOP INSTALLING) IF nodejs_version is not set to 10.x or 12.x
fail:
msg: "Internet Archive install cannot proceed, as it currently requires Node.js 10.x or 12.x, and your nodejs_version is set to {{ nodejs_version }}. Please check the value of nodejs_version in /opt/iiab/iiab/vars/default_vars.yml and possibly also /etc/iiab/local_vars.yml"
when: internetarchive_install and ((nodejs_version != "10.x") or (nodejs_version != "12.x"))
when: internetarchive_install and (nodejs_version != "10.x") and (nodejs_version != "12.x")
- name: Install packages needed by Distributed Web
package: