Something went wrong on our end
site.yml 1.02 KiB
#!/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: msmonitor.yml
tags: monitor
- import_playbook: mirismanager.yml
tags: manager
- import_playbook: wowza.yml
tags: wowza
- import_playbook: celerity.yml
tags: celerity
- import_playbook: mediaworker.yml
tags: worker
- import_playbook: mediaserver.yml
tags: server
- import_playbook: mediacache.yml
tags: mediacache
- import_playbook: mediavault.yml
tags: vault
- import_playbook: mediaimport.yml
tags: import
- import_playbook: netcapture.yml
tags: netcapture
# - import_playbook: bench.yml
# tags: bench
...