mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Update 0-init/tasks/main.yml
This commit is contained in:
parent
0726e76462
commit
8e861e2d30
1 changed files with 17 additions and 12 deletions
|
@ -36,19 +36,24 @@
|
||||||
- name: Pre-check that IIAB's "XYZ_install" + "XYZ_enabled" vars (1) are defined, (2) are boolean-not-string variables, and (3) contain plausible values. Also checks that "XYZ_install" is True when "XYZ_installed" is defined.
|
- name: Pre-check that IIAB's "XYZ_install" + "XYZ_enabled" vars (1) are defined, (2) are boolean-not-string variables, and (3) contain plausible values. Also checks that "XYZ_install" is True when "XYZ_installed" is defined.
|
||||||
include_tasks: validate_vars.yml
|
include_tasks: validate_vars.yml
|
||||||
|
|
||||||
|
# SEE: https://github.com/iiab/iiab/blob/master/roles/nginx/README.md
|
||||||
|
- name: "Set 'apache_enabled: True' if any of {DokuWiki, Elgg, Lokole, Moodle, Nextcloud, Node-RED} are set to install"
|
||||||
|
set_fact:
|
||||||
|
apache_enabled: True
|
||||||
|
when: dokuwiki_install or elgg_install or lokole_install or moodle_install or nextcloud_install or nodered_install
|
||||||
|
#
|
||||||
|
#- name: "Verify 'apache_install: True' and 'apache_enabled: True' if any of {DokuWiki, Elgg, Lokole, Moodle, Nextcloud, Node-RED} are set to install"
|
||||||
|
# assert:
|
||||||
|
# that: apache_install and apache_enabled or not (dokuwiki_install or elgg_install or lokole_install or moodle_install or nextcloud_install or nodered_install)
|
||||||
|
# fail_msg: "PLEASE CONFIRM 'apache_install: True' AND 'apache_enable: True' IF YOU'RE TRYING TO INSTALL ANY OF {dokuwiki, elgg, lokole, moodle, nextcloud, nodered} e.g. IN: /etc/iiab/local_vars.yml"
|
||||||
|
# quiet: yes
|
||||||
|
|
||||||
- name: "Verify 'apache_install: True' and 'apache_enabled: True' if 'nginx_enabled: False' -- e.g. for Apache testing of older playbooks lacking full NGINX support"
|
- name: "Verify 'apache_install: True' and 'apache_enabled: True' if 'nginx_enabled: False' -- e.g. for Apache testing of older playbooks lacking full NGINX support"
|
||||||
assert:
|
assert:
|
||||||
that: apache_install and apache_enabled or nginx_enabled
|
that: apache_install and apache_enabled or nginx_enabled
|
||||||
fail_msg: "PLEASE CONFIRM 'apache_install: True' AND 'apache_enable: True' IF 'nginx_enabled: False' e.g. IN: /etc/iiab/local_vars.yml"
|
fail_msg: "PLEASE CONFIRM 'apache_install: True' AND 'apache_enable: True' IF 'nginx_enabled: False' e.g. IN: /etc/iiab/local_vars.yml"
|
||||||
quiet: yes
|
quiet: yes
|
||||||
|
|
||||||
# SEE: https://github.com/iiab/iiab/blob/master/roles/nginx/README.md
|
|
||||||
- name: "Verify 'apache_install: True' and 'apache_enabled: True' if any of {DokuWiki, Elgg, Lokole, Moodle, Nextcloud, Node-RED} are set to install"
|
|
||||||
assert:
|
|
||||||
that: apache_install and apache_enabled or not (dokuwiki_install or elgg_install or lokole_install or moodle_install or nextcloud_install or nodered_install)
|
|
||||||
fail_msg: "PLEASE CONFIRM 'apache_install: True' AND 'apache_enable: True' IF YOU'RE TRYING TO INSTALL ANY OF {dokuwiki, elgg, lokole, moodle, nextcloud, nodered} e.g. IN: /etc/iiab/local_vars.yml"
|
|
||||||
quiet: yes
|
|
||||||
|
|
||||||
- name: Set top-level variables from local_facts for convenience
|
- name: Set top-level variables from local_facts for convenience
|
||||||
set_fact:
|
set_fact:
|
||||||
xo_model: "{{ ansible_local.local_facts.xo_model }}"
|
xo_model: "{{ ansible_local.local_facts.xo_model }}"
|
||||||
|
@ -59,8 +64,8 @@
|
||||||
set_fact:
|
set_fact:
|
||||||
rpi_model: "rpi"
|
rpi_model: "rpi"
|
||||||
is_rpi: True
|
is_rpi: True
|
||||||
# no_net_restart: True
|
#no_net_restart: True
|
||||||
# nobridge: True
|
#nobridge: True
|
||||||
when: ansible_local.local_facts.os == "raspbian"
|
when: ansible_local.local_facts.os == "raspbian"
|
||||||
|
|
||||||
- name: Set exFAT_enabled if xo_model != "none"
|
- name: Set exFAT_enabled if xo_model != "none"
|
||||||
|
@ -90,11 +95,11 @@
|
||||||
get_url:
|
get_url:
|
||||||
url: "{{ iiab_download_url }}/heart-beat.txt"
|
url: "{{ iiab_download_url }}/heart-beat.txt"
|
||||||
dest: /tmp/heart-beat.txt
|
dest: /tmp/heart-beat.txt
|
||||||
# timeout: "{{ download_timeout }}"
|
#timeout: "{{ download_timeout }}"
|
||||||
# @jvonau recommends: 100sec is too much (keep 10sec default)
|
# @jvonau recommends: 100sec is too much (keep 10sec default)
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
# async: 10
|
#async: 10
|
||||||
# poll: 2
|
#poll: 2
|
||||||
register: internet_access_test
|
register: internet_access_test
|
||||||
|
|
||||||
- name: Set internet_available if download succeeded and not disregard_network
|
- name: Set internet_available if download succeeded and not disregard_network
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue