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

61 lines
1.3 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
tags: internetarchive
2019-11-03 21:22:30 +00:00
# Until porting complete (@jvonau helping transition to Python 3)
2019-11-28 08:14:06 +00:00
#- name: 'Install Python 2.7 packages: python, python-pip'
# package:
# name:
# - python
# - python-pip # Used by Admin Console
# state: present
# To be ported soon
- name: CAPTIVE PORTAL
2019-12-05 02:20:08 +00:00
include_tasks: roles/captiveportal/tasks/main.yml
when: captiveportal_install | bool
tags: base, captiveportal, network, domain
2019-11-02 10:27:42 +00:00
- name: MINETEST
include_role:
name: minetest
tags: minetest
# KEEP AT THE END as this installs dependencies from Debian's 'testing' branch!
- name: CALIBRE
include_role:
name: calibre
tags: calibre
- name: CALIBRE-WEB
include_role:
name: calibre-web
tags: calibre-web
# Could split these two below to Stage 10?
2019-11-20 08:32:05 +00:00
- name: Configure NGINX
2019-11-19 14:47:38 +00:00
include_role:
name: nginx
when: nginx_install | bool
2019-11-19 14:47:38 +00:00
tags: base, nginx
2019-11-20 08:32:05 +00:00
- name: Configure Apache systemd service ({{ apache_service }})
include_role:
name: httpd-enable
when: apache_install | bool
2019-11-20 08:32:05 +00:00
tags: base, httpd
2017-10-30 20:39:35 +00:00
- name: Recording STAGE 9 HAS COMPLETED ====================
lineinfile:
2018-10-15 09:33:59 +00:00
dest: "{{ iiab_env_file }}"
regexp: '^STAGE=*'
line: 'STAGE=9'
state: present