1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/roles/9-local-addons/tasks/main.yml

43 lines
1.2 KiB
YAML
Raw Normal View History

2017-10-27 00:42:44 +00:00
# Local Add-ons
2017-05-27 18:09:50 +00:00
2017-10-30 20:39:35 +00:00
- name: ...IS BEGINNING ====================================
2017-10-27 00:42:44 +00:00
command: echo
2018-08-30 21:34:04 +00:00
2019-04-23 00:59:57 +00:00
- name: INTERNETARCHIVE
include_role:
2019-04-23 00:59:57 +00:00
name: internetarchive
2020-01-13 17:05:36 +00:00
when: internetarchive_install | bool
2020-01-13 17:05:36 +00:00
# Is porting to Python 3 complete, and if so does this belong elsewhere?
- name: CAPTIVE PORTAL
include_role:
name: captiveportal
2019-12-05 02:20:08 +00:00
when: captiveportal_install | bool
2019-11-02 10:27:42 +00:00
- name: MINETEST
include_role:
name: minetest
2020-01-13 17:05:36 +00:00
when: minetest_install | bool
# KEEP AT THE END as this installs dependencies from Debian's 'testing' branch!
- name: CALIBRE
include_role:
name: calibre
2020-01-13 17:05:36 +00:00
when: calibre_install | bool
- name: CALIBRE-WEB
include_role:
name: calibre-web
2020-01-13 17:05:36 +00:00
when: calibreweb_install | bool
- name: '2020-05-21: TEMPORARILY INSTALL APACHE UNTIL ADMIN CONSOLE DECLARES (OR REMOVES?) ITS DEPENDENCY within [console : Enable ssl] to avoid error "Neither of apache2ctl nor apachctl found. At least one apache control binary is necessary." -- possibly var adm_cons_force_ssl is still useful here?'
package:
name: apache2
when: admin_console_install | bool
2019-11-20 08:32:05 +00:00
2017-10-30 20:39:35 +00:00
- name: Recording STAGE 9 HAS COMPLETED ====================
lineinfile:
path: "{{ iiab_env_file }}"
regexp: '^STAGE=*'
line: 'STAGE=9'