mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
58 lines
1.7 KiB
YAML
58 lines
1.7 KiB
YAML
# Assessment logic removed 3/1/2017 TFM
|
|
|
|
# Assume all XOs are F18 and nothing else is
|
|
|
|
- name: Calc KA Lite db file name (Fedora 18)
|
|
set_fact:
|
|
kalite_db_name: "{{ kalite_root }}/kalite/database/data.sqlite"
|
|
when: is_F18
|
|
|
|
- name: Calc KA Lite db file name (OS's other than Fedora 18)
|
|
set_fact:
|
|
kalite_db_name: "{{ kalite_root }}/database/data.sqlite"
|
|
when: not is_F18
|
|
|
|
- name: See if KA Lite is already configured
|
|
stat: path="{{ kalite_db_name }}"
|
|
register: kalite_installed
|
|
|
|
- include_tasks: install-f18.yml
|
|
when: not kalite_installed.stat.exists and is_F18
|
|
|
|
- include_tasks: install.yml
|
|
when: kalite_installed is defined and not kalite_installed.stat.exists and not is_F18
|
|
|
|
- name: Ask systemd to reread the unit files
|
|
shell: systemctl daemon-reload
|
|
when: not kalite_installed.stat.exists
|
|
|
|
- include_tasks: setup-f18.yml
|
|
when: not kalite_installed.stat.exists and is_F18
|
|
|
|
- include_tasks: setup.yml
|
|
when: not kalite_installed.stat.exists and not is_F18
|
|
|
|
- include_tasks: enable.yml
|
|
|
|
- name: Add 'kalite-serve' to service list
|
|
ini_file: dest='{{ service_filelist }}'
|
|
section=kalite
|
|
option='{{ item.option }}'
|
|
value='{{ item.value }}'
|
|
with_items:
|
|
- option: name
|
|
value: kalite
|
|
- option: description
|
|
value: '"KA Lite is a server to present Khan Academy videos offline and to download them."'
|
|
- option: path
|
|
value: "{{ kalite_root }}"
|
|
- option: server_name
|
|
value: "{{ kalite_server_name }}"
|
|
- option: port
|
|
value: "{{ kalite_server_port }}"
|
|
- option: enabled
|
|
value: "{{ kalite_enabled }}"
|
|
- option: cron_enabled
|
|
value: "{{ kalite_cron_enabled }}"
|
|
- option: khan_assessment_install
|
|
value: "{{ khan_assessment_install }}"
|