ansible_playbook_audiometer/site.yml

38 lines
1.2 KiB
YAML
Raw Normal View History

2023-02-07 23:01:57 +01:00
---
- name: Check if ansible is not to old
hosts: localhost
roles:
- {role: do1jlr.ansible_version, tags: [default, version, default, always], gather_facts: false}
- name: General roles for all hosts
hosts: all
roles:
- {role: do1jlr.base, tags: [default, packages, base]}
- {role: do1jlr.ranger, tags: [packages, ranger]}
- {role: unattended_upgrades, tags: [default, unattended, unattended_upgrades, security], become: true, when: ansible_distribution == 'Debian'}
- {role: do1jlr.ntp, tags: [ntp]}
- name: User specific roles for all hosts
hosts: all
roles:
- {role: do1jlr.admin_base, tags: [default, init, users, accounts, dotfiles]}
- {role: do1jlr.dotfiles, tags: [default, dotfiles]}
2023-02-14 00:23:00 +01:00
2023-02-20 00:12:00 +01:00
#- name: Video Tasks from debian sid
# TODO: Webserver stuff
# hosts: all
# roles:
# - {role: ffmpeg, tags: ffmpeg}
# - {role: nginx_rtmp, tags: nginx}
- name: Video tasks instead with debian stable
2023-02-14 00:23:00 +01:00
hosts: all
roles:
2023-02-20 00:12:00 +01:00
- {role: ffmpeg_install, tags: ffmpeg}
- {role: do1jlr.webhost, tags: [web, webhost], become: true}
- {role: do1jlr.acmetool, tags: [web, acmetool], become: true}
- {role: do1jlr.nginx, tags: [web, nginx]}
2023-02-21 00:49:58 +01:00
- {role: streaming_website, tags: web}
- {role: ffmpeg_command, tags: ffmpeg}
2023-02-20 00:12:00 +01:00