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

54 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
2019-05-25 04:50:19 +00:00
when: internetarchive_install | bool
2019-04-23 00:59:57 +00:00
tags: internetarchive
2019-11-02 10:27:42 +00:00
# until porting is complete
- name: Install python-2.7
package:
name: python
state: present
# used by iiab-update-map supplied by osm-vector-maps
- name: Create a Python interface to iiab.env
template:
src: roles/1-prep/templates/iiab_env.py.j2
dest: /etc/iiab/iiab_env.py
- name: Installing captive portal
include_tasks: roles/captive-portal/tasks/main.yml
when: captive_portal_install | bool
tags: base, captive-portal, network, domain
- name: MINETEST
include_role:
name: minetest
when: minetest_install | bool
tags: minetest
# KEEP AT THE END as this installs dependencies from Debian's 'testing' branch!
- name: CALIBRE
include_role:
name: calibre
when: calibre_install | bool
tags: calibre
- name: CALIBRE-WEB
include_role:
name: calibre-web
when: calibreweb_install | bool
tags: calibre-web
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