blob: 21d841fe26e8a9288fd3c98f6a66ee8272e1fe6b (
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
|
---
- name: install packages
apt:
name:
- gstreamer1.0-tools
- gstreamer1.0-plugins-base
- gstreamer1.0-plugins-good
- gstreamer1.0-plugins-bad
- gstreamer1.0-alsa
- git
- libasound2-dev
- telnet
- golang-go
- name: clone dolmetschctl repo
git:
repo: https://git.spreadspace.org/dolmetschctl
dest: /opt/dolmetschctl
- name: build dolmetschctl (server and client)
loop:
- dolmetschctl
- dolmetschctld
command: "go build -o {{ item }} ./cmd/{{ item }}"
args:
chdir: /opt/dolmetschctl
creates: "/opt/dolmetschctl/{{ item }}"
environment:
GOPATH: /opt/.gopath
- name: install dolmetschctl systemd units
loop:
- dolmetschctl
- dolmetschctld
template:
src: "{{ item }}.service.j2"
dest: "/etc/systemd/system/{{ item }}.service"
notify: reload systemd
- name: install rtp send/receive scripts
loop:
- rtp-recv
- rtp-send
template:
src: "{{ item }}.sh.j2"
dest: "/usr/local/bin/{{ item }}.sh"
mode: 0750
- name: install rtp send/receive systemd units
loop:
- rtp-recv
- rtp-send
template:
src: "{{ item }}.service.j2"
dest: "/etc/systemd/system/{{ item }}.service"
notify: reload systemd
|