summaryrefslogtreecommitdiffstats
path: root/pad/tasks/main.yml
blob: 86374068a68b227c917e1dd9c0f56c21e7743d08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
# tasks file for pad
- name: Add nodesource key
  apt_key:
    url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key
    state: present
- name: Add nodesource repository
  ansible.builtin.apt_repository:
    repo: deb https://deb.nodesource.com/node_13.x buster main
    update_cache: yes
- name: Install packages
  apt:
    update_cache: yes
    name:
      - systemd
      - sudo
      - nodejs
      - mariadb-server
      - mariadb-client
    state: present
- name: Create etherpad user
  user:
    name: etherpad
    home: /home/etherpad
    shell: /bin/bash
    state: present
- name: Install etherpad
  git:
    repo: https://github.com/ether/etherpad-lite.git
    dest: "{{ etherpad_path }}"
    depth: 1
  become: true
  become_user: etherpad
- name: Configure etherpad
  template:
    src: templates/settings.json
    dest: "{{ etherpad_path }}/settings.json"
- name: Set etherpad API key
  copy:
    content: "{{ etherpad_api_key }}"
    dest: "{{ etherpad_path }}/APIKEY.txt"
    owner: "{{ etherpad_user }}"
    mode: "0600"
- name: Install dependencies
  shell: cd {{ etherpad_path }}; . src/bin/functions.sh; src/bin/installDeps.sh
  become: true
  become_user: etherpad
- name: Install etherpad plugins
  npm:
    name: ep_pad-lister
    path: "{{ etherpad_path }}"
  become: true
  become_user: etherpad
- include: mariadb.yml
- name: Install init.d configuration
  tags: system
  template:
    src: etherpad.init.d
    dest: /etc/init.d/etherpad
    owner: root
    group: root
    mode: 0755
- name: Start Etherpad
  tags: system
  service:
    name: etherpad
    state: started
- tags: create-pads
  include_vars:
    file: talks.json
    name: talks
- name: Set slugs
  tags: create-pads
  set_fact:
    slugs:
- name: Wait for OK
  tags: create-pads
  uri:
    url: "http://localhost:9001/api/1/createPad?apikey={{ etherpad_api_key }}&padID={{etherpad_base}}-{{etherpad_year}}"
  register: _result
  until: _result.status == 200
  retries: 720
  delay: 5  
- debug:
    var: _result
  tags: create-pads
- name: Create pads
  tags: create-pads
  uri:
    url: "http://localhost:9001/api/1/createPad?apikey={{ etherpad_api_key }}&padID={{etherpad_base}}-{{etherpad_year}}-{{ item.slug }}"
  loop: "{{ talks | json_query('talks[*]') }}"