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

184 lines
7.2 KiB
YAML
Raw Normal View History

2018-07-11 23:51:10 +00:00
# 0. CLEAN UP PRIOR VERSIONS OF SUGARIZER (NEEDS WORK!)
- name: Wipe /library/www/html/sugarizer* if installing sugarizer-1.0
shell: "rm -rf {{ doc_root }}/sugarizer*"
when: sugarizer_version == "sugarizer-1.0"
2018-07-11 23:51:10 +00:00
# 1. DOWNLOAD /opt/iiab/sugarizer
2018-07-14 17:38:06 +00:00
- name: Clone llaske/sugarizer ({{ sugarizer_git_version }}) from GitHub to /opt/iiab (CAN TAKE SEVERAL MINUTES)
2018-07-11 23:51:10 +00:00
git:
repo: https://github.com/llaske/sugarizer
2018-07-12 00:38:19 +00:00
dest: "{{ sugarizer_location }}/{{ sugarizer_version }}"
2018-07-11 23:51:10 +00:00
version: "{{ sugarizer_git_version }}"
2018-07-12 01:27:40 +00:00
force: yes
2018-07-13 01:04:04 +00:00
depth: 1
2018-07-12 00:12:30 +00:00
when: internet_available
2018-07-11 23:51:10 +00:00
- name: Create symbolic link /opt/iiab/sugarizer -> /opt/iiab/{{ sugarizer_version }}
file:
src: "{{ sugarizer_location }}/{{ sugarizer_version }}"
dest: "{{ sugarizer_location }}/sugarizer"
2017-11-20 04:09:54 +00:00
state: link
2017-05-27 18:09:50 +00:00
2018-07-11 23:51:10 +00:00
# 2. DOWNLOAD /opt/iiab/sugarizer-server
2018-07-12 01:27:40 +00:00
# July 2018: http://download.iiab.io/packages/sugarizer-server-1.0.tar.gz
# was flawed, as documented at:
# https://github.com/iiab/iiab/pull/814#issuecomment-404211098
# Versions of MongoDB, npm (& Node.js ?) matter! Sugarizer 1.0 Context:
2018-07-11 23:51:10 +00:00
# https://github.com/iiab/iiab/issues/798
# Going forward let's "git clone" IIAB's preferred versions, of sugarizer
2018-07-12 01:29:49 +00:00
# AND sugarizer-server, as specified in roles/sugarizer/defaults/main.yml
2018-07-14 16:25:58 +00:00
# 2018-07-14 BLOAT: git works well BUT even with "depth: 1"
2018-07-14 13:22:50 +00:00
# - 229MB is unfort downloaded to /opt/iiab/sugarizer/.git
# - 1.4MB is unfort downloaded to /opt/iiab/sugarizer-server/.git
2018-07-11 23:51:10 +00:00
- name: Clone llaske/sugarizer-server ({{ sugarizer_server_git_version }}) from GitHub to /opt/iiab
git:
2018-07-11 23:11:29 +00:00
repo: https://github.com/llaske/sugarizer-server
2018-07-12 00:38:19 +00:00
dest: "{{ sugarizer_location }}/{{ sugarizer_server_version }}"
2018-07-11 23:51:10 +00:00
version: "{{ sugarizer_server_git_version }}"
2018-07-12 01:27:40 +00:00
force: yes
2018-07-13 01:04:04 +00:00
depth: 1
2018-07-12 00:12:30 +00:00
when: internet_available
2018-07-14 16:39:43 +00:00
- name: Create symbolic link /opt/iiab/sugarizer-server -> /opt/iiab/{{ sugarizer_server_version }}
2018-05-17 22:23:44 +00:00
file:
src: "{{ sugarizer_location }}/{{ sugarizer_server_version }}"
dest: "{{ sugarizer_location }}/sugarizer-server"
state: link
2018-07-11 23:51:10 +00:00
# 3. INSTALL A GOOD VERSION OF Node.js AND npm
2018-07-14 15:59:26 +00:00
- name: Set up Node.js 8.x apt sources (debuntu, but avoid ubuntu-18)
shell: curl -sL https://deb.nodesource.com/setup_8.x | bash -
when: internet_available and is_debuntu and not is_ubuntu_18
2018-07-14 15:59:26 +00:00
- name: Install latest Node.js which includes /usr/bin/npm (debuntu, but avoid ubuntu-18)
package:
name: nodejs
2018-07-14 13:22:50 +00:00
# name: nodejs=8.x
2018-07-14 15:59:26 +00:00
state: latest
# state: present
when: internet_available and is_debuntu and not is_ubuntu_18
2018-07-14 17:28:39 +00:00
# 2018-07-14: Raspbian (apt offers npm 1.4.21) & Debian 9 (apt offers no npm!)
# STILL NEED the above nodesource.com approach to get a version of npm that
# works with Sugarizer, as documented at:
# https://github.com/iiab/iiab/issues/798#issuecomment-404324530
# FYI this nodesource.com approach (brings in npm 5.6.0 with nodejs 8.11.3
# for now) would also work on Ubuntu 18.04, and might even bring about a
# more sane consistency between mainline OS's?
#
# But For Now: Ubuntu 18.04's apt (approach below) brings in npm 3.5.2,
# which appears suffic "SO FAR"? 18.04's nodejs 8.10.0 is more reassuring!
# Crazy Aside: some versions of npm can upgrade themselves to the latest
# (6.1.0 for now) using command "npm install -g npm", but careful as it
# ends up in /usr/local/bin causing future/pkg management issues:
# https://askubuntu.com/questions/1036278/npm-is-incorrect-version-on-latest-ubuntu-18-04-installation
2018-07-14 16:11:50 +00:00
- name: Install Node.js and npm (ubuntu-18 or not debuntu)
package:
name: "{{ item }}"
state: latest
2018-07-14 16:11:50 +00:00
when: internet_available and (is_ubuntu_18 or not is_debuntu)
2017-09-22 07:14:14 +00:00
with_items:
- nodejs
- npm
2018-07-11 23:51:10 +00:00
# 4. RUN "npm install" TO POPULATE ~35MB /opt/iiab/sugarizer-server/node_modules
2018-07-14 15:59:26 +00:00
# Re-running "npm install" USED TO fail on Raspbian 9 if not other OS's.
# Several strategies to avoid re-running it:
# OLD WAY 1: test & set flag node_modules_exists: True
# OLD WAY 2: "creates: ..." checks for non-existence of /opt/iiab/sugarizer-server-1.0/node_modules
# OLD WAY 3: set "register: git_sug_server_output" above, then as nec delete /opt/iiab/sugarizer-server-1.0/node_modules "when: git_sug_server_output.changed" and as nec run "npm install"
# NEW WAY: run "npm install" every time, as modern versions of npm are
# incremental, with sanity checks (as tested with npm 3.5.2 and 5.6.0)
2018-07-14 13:22:50 +00:00
#- name: Check for /opt/iiab/{{ sugarizer_server_version }}/node_modules
# stat:
# path: "{{ sugarizer_location }}/{{ sugarizer_server_version }}/node_modules"
# register: nmtest
# ignore_errors: true
#
#- name: Set a flag to prevent re-running of "npm install"
# set_fact:
# node_modules_exists: True
# when: nmtest.stat is defined and nmtest.stat.exists
2017-09-04 18:43:00 +00:00
2018-07-14 13:22:50 +00:00
#- name: Create the express framework for Node.js (OS's other than Fedora 18)
2018-07-14 15:59:26 +00:00
- name: Run 'npm install' to create /opt/iiab/{{ sugarizer_server_version }}/node_modules (CAN TAKE SEVERAL MINUTES)
command: npm install # slightly safer than "shell:"
2018-07-11 23:51:10 +00:00
args:
chdir: "{{ sugarizer_location }}/{{ sugarizer_server_version }}"
2018-07-14 15:59:26 +00:00
# creates: "{{ sugarizer_location }}/{{ sugarizer_server_version }}/node_modules" # OLD WAY 2
# when: git_sug_server_output.changed # OLD WAY 3
# when: not is_F18 and not node_modules_exists # OLD WAY 1
2018-07-11 23:51:10 +00:00
2018-07-14 13:22:50 +00:00
#- name: Create the express framework for Node.js (Fedora 18)
# shell: npm install
# args:
# chdir: "{{ sugarizer_location }}/sugarizer/server"
# when: is_F18 and not node_modules_exists
2018-07-11 23:51:10 +00:00
# 5. PLACE CONFIG FILES
- name: Configure sugarizer.service (systemd), sugarizer.conf (Apache) and sugarizer.ini
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
2018-05-22 16:52:31 +00:00
mode: "{{ item.mode }}"
owner: root
group: root
2017-05-27 18:09:50 +00:00
with_items:
- { src: 'sugarizer.service.j2', dest: '/etc/systemd/system/sugarizer.service', mode: '0644' }
- { src: 'sugarizer.ini', dest: '{{ sugarizer_location }}/{{ sugarizer_server_version }}/env/sugarizer.ini', mode: '0644' }
- { src: 'sugarizer.conf', dest: '/etc/apache2/sites-available', mode: '0644' }
2017-05-27 18:09:50 +00:00
2018-07-12 01:40:04 +00:00
- name: Create symlink for short URL http://box/sugarizer
2018-07-11 17:06:37 +00:00
file:
src: /etc/apache2/sites-available/sugarizer.conf
dest: /etc/apache2/sites-enabled/sugarizer.conf
state: link
2017-05-27 18:09:50 +00:00
2018-07-11 23:51:10 +00:00
# 6. RESTART/STOP SYSTEMD SERVICE
2017-05-27 18:09:50 +00:00
- name: Enable services (all OS's)
service:
name: "{{ item.name }}"
enabled: yes
state: restarted
2017-09-22 07:14:14 +00:00
with_items:
2018-07-14 16:11:50 +00:00
# - { name: mongodb } # 2018-07-14: NICE TRY, but still doesn't bring http://box:8089 to life reliably, as a reboot usually does! (Is a daemon-reload or some such nec?)
2017-12-08 06:20:01 +00:00
- { name: sugarizer }
2017-09-22 07:14:14 +00:00
when: sugarizer_enabled
2017-05-27 18:09:50 +00:00
- name: Disable service (all OS's)
service:
name: "{{ item.name }}"
enabled: no
state: stopped
2017-09-22 07:14:14 +00:00
with_items:
- { name: sugarizer }
2017-09-22 07:14:14 +00:00
when: not sugarizer_enabled
2017-05-27 18:09:50 +00:00
2017-11-27 01:05:27 +00:00
- name: Add 'sugarizer' to list of services at /etc/iiab/iiab.ini
ini_file:
2017-11-20 04:02:07 +00:00
dest: "{{ service_filelist }}"
section: sugarizer
option: "{{ item.option }}"
value: "{{ item.value }}"
2017-05-27 18:09:50 +00:00
with_items:
2017-12-08 06:20:01 +00:00
- option: name
value: Sugarizer
- option: description
value: '"The Sugar Learning Platform began with the famous One Laptop Per Child project, written in Python. Sugarizer is the new HTML/JavaScript implementation of Sugar, usable in most all browsers."'
- option: enabled
value: "{{ sugarizer_enabled }}"