summaryrefslogtreecommitdiffstats
path: root/roles/bbb/tasks/main.yml
blob: 017e939fdd787b3c9c0621dfa553e9fa2050f56e (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
---
- name: Create group
  group:
    name: "{{ emacsconf_group }}"
    state: present
- name: Create user
  user:
    name: "{{ emacsconf_user }}"
    group: "{{ emacsconf_group }}"
    state: present
- name: Add public key for authorized access
  ansible.posix.authorized_key:
    user: "{{ emacsconf_user }}"
    state: present
    key: '{{ item }}'
  with_file:
    - ../../base/files/keys/sachac
    - ../../base/files/keys/orga
- name: Set up video.yml
  become: true
  template:
    src: video.yml
    dest: /usr/local/bigbluebutton/core/scripts/video.yml
- name: Set up bigbluebutton.yml
  become: true
  template:
    src: bigbluebutton.yml
    dest: /usr/local/bigbluebutton/core/scripts/bigbluebutton.yml