summaryrefslogtreecommitdiff
path: root/roles/controller/tasks/main.yml
blob: e6ec7f12693661c68618281124b03f49b9a85a9b (plain)
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
- name: "install controller dependencies and useful tools"
  apt:
    name:
      - screen
      - git
      - haproxy
      - psmisc
      - python3
      - python3-bottle
      - python3-jwt
      - python3-crypto
    state: present

- name: "install controller source"
  git:
    repo: git://git.liw.fi/wmf-ci-arch
    dest: /srv/wmf-ci-arch

- name: "create user for controller"
  user:
    name: _wmf
    comment: "WMF CI"

- name: "install key for checking incoming access tokens"
  copy:
    src: token.pub
    dest: /etc/wmf_ci_token.pub
    owner: root
    group: root
    mode: '0644'

- name: "install API access token for controller"
  copy:
    content: "{{ controller_token }}"
    dest: /etc/wmf_controller_token
    owner: _wmf
    group: _wmf
    mode: '0600'

- name: "install controller.service"
  copy:
    src: controller.service
    dest: /lib/systemd/system/controller.service

- name: "enable and (re)start controller"
  systemd:
    name: controller.service
    daemon_reload: yes
    enabled: yes
    state: restarted