summaryrefslogtreecommitdiffstats
path: root/roles/obs/tasks/main.yml
blob: 8c1e0590d05d0f12ab8347d0272da0981a2a20ec (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
- name: Load icecast vars
  tags: obs-profile, wip
  include_vars:
    file: ../../stream/defaults/main.yml
- name: Add repo
  apt_repository:
    repo: ppa:obsproject/obs-studio
  when: ansible_distribution == "Ubuntu"
- name: Add packages
  apt:
    name:
      - xserver-xorg-video-dummy
      - i3
      - inkscape  # OBS overlaying PNG is prettier than SVG
      - socat
      - ffmpeg
      - pulseaudio
      - jackd2
      - alsa-utils
      - dbus-x11
      - obs-studio
      - xserver-xorg-dev
      - xdotool
    update_cache: yes
- name: Add Firefox
  apt:
    name: firefox-esr
  when: ansible_distribution == "Debian"
- name: Add Firefox
  apt:
    name: firefox-esr
  when: ansible_distribution == "Ubuntu"
- name: Copy X11 config
  template:
    src: xorg.conf
    dest: /etc/X11/xorg.conf
- name: Set up MPV and MPVC
  tags: mpv
  include: mpv.yml
- name: Set up track-specific things
  include: track.yml
  loop: "{{ emacsconf_tracks }}"
- debug:
    var: emacsconf_home
- name: Add packages
  apt:
    name:
      - tigervnc-standalone-server
      - tigervnc-common
  tags: vnc
- name: Allow SSH for the users
  replace:
    dest: /etc/ssh/sshd_config.d/emacsconf_ssh.conf
    regexp: '(AllowUsers(?!.*\b{{ emacsconf_id }}-{{ item.id }}\b).*)$'
    replace: \1 {{ emacsconf_id }}-{{ item.id }}
  loop: "{{ emacsconf_tracks }}"
- name: Allow sudo from {{ emacsconf_user }} to the stream users
  become: true
  become_user: root
  copy:
    content: |
      {% for item in emacsconf_tracks %}
        {{ emacsconf_user }}  ALL=({{ emacsconf_id }}-{{ item.id }}) NOPASSWD: ALL
      {% endfor %}    
    dest: /etc/sudoers.d/50_emacsconf
- name: Create directories
  file:
    owner: "{{ emacsconf_user }}"
    group: "{{ emacsconf_group }}"
    path: "{{ item }}"
    state: directory
    mode: 0775
  loop:
    - /data/{{ emacsconf_id }}/stream
    - /data/{{ emacsconf_id }}/overlays