mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
24 lines
1.2 KiB
YAML
24 lines
1.2 KiB
YAML
# 2020-01-23 TO DO / Questions:
|
|
# - Validate input vars apache_install & apache_enabled here. Use them as nec.
|
|
# - Encapsulate all 3 tasks below into httpd/roles/install.yml ?
|
|
# - Similarly sanity-check httpd/roles/enable.yml...
|
|
# - Verify that 9-local-addons/tasks/main.yml's invocation of
|
|
# roles/httpd/tasks/enable.yml (via roles/httpd-enable/tasks/main.yml, if
|
|
# apache_enabled is True) does the right thing!
|
|
# - And that we really don't want to invoke it hereunder?
|
|
# - Save relevant apache_* vars to /etc/iiab/iiab.ini
|
|
|
|
- include_tasks: install.yml
|
|
- include_tasks: html.yml
|
|
|
|
# 2018-07-18: Partially fixes search @ http://box/modules/es-wikihow (on RPi
|
|
# anyway) https://github.com/iiab/iiab/issues/829 & PR #925
|
|
# 2020-01-23: Deprecated as @tim-moody's attempt to revive this for PHP 7.3
|
|
# instead of 7.0 failed: https://github.com/iiab/iiab/issues/2123
|
|
#- include_tasks: php-stem.yml
|
|
|
|
- name: Install /usr/bin/iiab-refresh-wiki-docs (scraper script) to create http://box/info offline documentation. (Script can be run manually and/or at the end of Stage 4 = roles/4-server-options/tasks/main.yml)
|
|
template:
|
|
src: refresh-wiki-docs.sh
|
|
dest: /usr/bin/iiab-refresh-wiki-docs
|
|
mode: '0755'
|