Newer
Older
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
#!/usr/bin/env ansible-playbook
---
- name: PYTHON
hosts: all
gather_facts: false
tasks:
- name: ensure python3 is installed
register: python_install
changed_when: "'es_pyinstall' in python_install.stdout_lines"
raw: command -v python3 || echo es_pyinstall && apt update && apt install -y python3-minimal python3-apt iproute2
tags: always
- import_playbook: "{{ 'postgres-ha' if groups['postgres']|d('') | length > 1 else 'postgres' }}.yml"
tags: postgres
- import_playbook: mirismanager.yml
tags: manager
- import_playbook: celerity.yml
tags: celerity
- import_playbook: mediaworker.yml
tags: worker
- import_playbook: mediaserver.yml
tags: server
- import_playbook: live/deploy-standalone.yml
tags: live
- import_playbook: mediacache/deploy-standalone.yml
tags: mediacache
- import_playbook: mediavault/deploy.yml
tags: vault
- import_playbook: mediaimport.yml
tags: import
- import_playbook: netcapture.yml
tags: netcapture
- import_playbook: bench.yml
tags: bench
- import_playbook: munin/all.yml
tags: monitor
- import_playbook: tester.yml
tags: tester