1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/lokole/tasks/install.yml

118 lines
4.6 KiB
YAML
Raw Normal View History

# Lokole PDF (User's Guide) gets copied for offline use (http://box/info) here:
# https://github.com/iiab/iiab/blob/master/roles/httpd/templates/refresh-wiki-docs.sh#L51-L52
- name: "Set 'apache_install: True' and 'apache_enabled: True'"
set_fact:
apache_install: True
apache_enabled: True
- name: APACHE - run 'httpd' role
include_role:
name: httpd
- name: "Install 8 packages for Lokole: python3, python3-pip, python3-venv, python3-dev, python3-bcrypt, libffi-dev, libssl-dev, libopenjp2-7"
2018-07-13 02:14:39 +00:00
apt:
2018-10-09 00:01:15 +00:00
name:
- python3
- python3-pip
- python3-venv
- python3-dev
- python3-bcrypt # 2019-10-14: Should work across modern Linux OS's
#- bcrypt does not exist on Ubuntu 19.10
2018-10-09 00:01:15 +00:00
- libffi-dev
2020-03-25 17:24:08 +00:00
- libjpeg-dev
2018-10-09 00:01:15 +00:00
- libssl-dev
- libopenjp2-7 # 2020-02-01: To solve bug #2221
2018-07-08 01:21:42 +00:00
state: present
# For development purposes -- To install Lokole from a given commit, add the
# following line to roles/lokole/defaults/main.yml:
# lokole_commit: <git_commit_id>
- name: "OPTIONAL: pip install opwen_email_client (Lokole, git commit {{ lokole_commit }}) from GitHub to {{ lokole_venv }}, if lokole_commit is defined"
pip:
2020-04-29 15:30:23 +00:00
name: "git+https://github.com/ascoderu/lokole.git@{{ lokole_commit }}#egg=opwen_email_client"
virtualenv: "{{ lokole_venv }}"
virtualenv_command: python3 -m venv "{{ lokole_venv }}"
extra_args: --no-cache-dir # To avoid caching issues e.g. soon after new releases hit https://pypi.org/project/opwen-email-client/
when:
- internet_available | bool
- lokole_commit is defined
# For development purposes -- To install a given pip version of Lokole, add
# the following line to roles/lokole/defaults/main.yml:
# lokole_version: <git_version_number>
- name: "OPTIONAL: pip install opwen_email_client (Lokole, version {{ lokole_version }}) from PyPI to {{ lokole_venv }}, if lokole_version is defined"
2018-07-13 02:44:10 +00:00
pip:
name: opwen_email_client
2018-07-21 19:18:35 +00:00
version: "{{ lokole_version }}"
virtualenv: "{{ lokole_venv }}"
2018-07-23 04:06:23 +00:00
virtualenv_command: python3 -m venv "{{ lokole_venv }}"
2019-07-01 04:25:35 +00:00
extra_args: --no-cache-dir # To avoid caching issues e.g. soon after new releases hit https://pypi.org/project/opwen-email-client/
when:
- internet_available | bool
- lokole_version is defined
- name: "DEFAULT: pip install opwen_email_client (Lokole, latest available version) from PyPI to {{ lokole_venv }}, if above vars both UNdefined"
pip:
name: opwen_email_client
virtualenv: "{{ lokole_venv }}"
virtualenv_command: python3 -m venv "{{ lokole_venv }}"
extra_args: --no-cache-dir # To avoid caching issues e.g. soon after new releases hit https://pypi.org/project/opwen-email-client/
when:
- internet_available | bool
- lokole_commit is undefined and lokole_version is undefined
- name: Compile translations
shell: |
python_version=$(python3 -c 'from sys import version_info; print("%s.%s" % (version_info.major, version_info.minor));';)
{{ lokole_venv }}/bin/pybabel compile -d {{ item }}/translations
with_items:
- "{{ lokole_venv }}/lib/python${python_version}/site-packages/opwen_email_client/webapp"
- name: mkdir {{ lokole_run_directory }}
file:
state: directory
path: "{{ lokole_run_directory }}"
2018-07-22 06:07:31 +00:00
2018-11-04 05:50:04 +00:00
- name: Install {{ lokole_run_directory }}/webapp_secrets.sh from template, to configure Lokole
2018-07-22 06:07:31 +00:00
template:
src: webapp_secrets.sh.j2
2018-07-23 04:03:04 +00:00
dest: "{{ lokole_run_directory }}/webapp_secrets.sh"
2018-07-22 06:07:31 +00:00
2018-11-04 05:50:04 +00:00
- name: Install {{ lokole_run_directory }}/webapp.sh from template, to configure Gunicorn
template:
src: webapp.sh.j2
dest: "{{ lokole_run_directory }}/webapp.sh"
mode: a+x
- name: Create admin user with password, for http://box{{ lokole_url }} # http://box/lokole
2018-11-12 16:01:56 +00:00
shell: |
. {{ lokole_run_directory }}/webapp_secrets.sh
{{ lokole_venv }}/bin/manage.py createadmin --name='{{ lokole_admin_user }}' --password='{{ lokole_admin_password }}'
- name: Install /etc/{{ apache_conf_dir }}/lokole.conf from template, for http://box{{ lokole_url }} via Apache # http://box/lokole
template:
src: lokole.conf.j2
2020-01-30 09:00:00 +00:00
dest: "/etc/{{ apache_conf_dir }}/lokole.conf"
when: apache_install | bool
- name: Install /etc/systemd/system/lokole.service unit file from template
template:
src: lokole.service.j2
dest: /etc/systemd/system/lokole.service
2020-01-30 09:00:00 +00:00
# RECORD Lokole AS INSTALLED
- name: "Set 'lokole_installed: True'"
set_fact:
lokole_installed: True
- name: "Add 'lokole_installed: True' to {{ iiab_state_file }}"
2019-09-14 22:52:02 +00:00
lineinfile:
path: "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
2019-09-14 22:52:02 +00:00
regexp: '^lokole_installed'
2019-10-07 17:11:21 +00:00
line: 'lokole_installed: True'