This repository has been archived by the owner on Mar 6, 2019. It is now read-only.
forked from UoM-Podcast/capture-agent-ansible
-
Notifications
You must be signed in to change notification settings - Fork 2
/
capture-agent.yml
135 lines (119 loc) · 4.39 KB
/
capture-agent.yml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
---
- hosts: capture-agents
remote_user: root
roles:
- capture-agent-common
- galicaster-capture-agent-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-blackmagic
remote_user: root
roles:
- galicaster-capture-agent-blackmagic-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-datapath
remote_user: root
roles:
- galicaster-capture-agent-datapath-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-magewell
remote_user: root
roles:
- galicaster-capture-agent-magewell-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-blackmagic-usb:capture-agents-datapath-usb:capture-agents-datapath-axis-usb
remote_user: root
roles:
- galicaster-capture-agent-usb
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-blackmagic-split:capture-agents-datapath-split
remote_user: root
roles:
- galicaster-capture-agent-split
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-blackmagic-split-wifi:capture-agents-datapath-split-wifi:capture-agents-blackmagic-usb-wifi:capture-agents-datapath-usb-wifi
remote_user: root
roles:
- galicaster-capture-agent-wifi
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-dual-datapath-split-lecturesight:capture-agents-datapath-split-lecturesight:capture-agents-datapath-usb-lecturesight:capture-agents-datapath-axis-muxed-lecturesight:capture-agents-datapath-axis-split-lecturesight:capture-agents-datapath-axis-usb-lecturesight
remote_user: root
roles:
- lecturesight-capture-agent-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-axis:capture-agents-datapath-axis-muxed-lecturesight:capture-agents-datapath-axis-muxed:capture-agents-datapath-axis-split-lecturesight:capture-agents-datapath-axis-split:capture-agents-datapath-axis-usb
remote_user: root
roles:
- datapath-axis-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agent-magewell-split
remote_user: root
roles:
- galicaster-capture-agent-magewell-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-v4l2-x2-axis-muxed
remote_user: root
roles:
- v4l2-axis-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-v4l2-split:capture-agents-v4l2-usb:capture-agents-dual-v4l2-split
remote_user: root
roles:
- v4l2-common
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents-v4l2-x2-axis-muxed:capture-agents-axis:capture-agents-datapath-axis-muxed-lecturesight:capture-agents-datapath-axis-muxed:capture-agents-datapath-axis-split-lecturesight:capture-agents-datapath-axis-split:capture-agents-datapath-axis-usb
remote_user: root
roles:
- vapix-common
- hosts: capture-agents:!capture-agents-blackmagic-split-wifi:!capture-agents-datapath-split-wifi:!capture-agents-blackmagic-usb-wifi:!capture-agents-datapath-usb-wifi
remote_user: root
roles:
- capture-agent-not-wifi
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents
remote_user: root
roles:
- { role: capture-agent-interactive, when: CA_interactive == True }
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents
remote_user: root
roles:
- { role: obs-capture-agent-common, when: install_obs|default(false)}
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"
- hosts: capture-agents
remote_user: root
roles:
- reboot-handler
- capture-agent-end
environment:
http_proxy: "{{ http_proxy_server }}"
https_proxy: "{{ https_proxy_server }}"