forked from LibriVox/librivox-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
librivox.yaml
33 lines (32 loc) · 1.13 KB
/
librivox.yaml
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
- hosts: production
vars_files:
- vars/versions.yaml
- vars/production.enc
roles:
- { 'role': 'common', 'tags': 'common' }
- { 'role': 'ssh_port', 'tags': 'ssh_port' }
- { 'role': 'blog+catalog', 'tags': 'blog+catalog' }
- { 'role': 'acf_pro', 'tags': 'acf_pro' }
- { 'role': 'wiki', 'tags': 'wiki' }
- { 'role': 'forum', 'tags': 'forum' }
- { 'role': 'backup', 'tags': 'backup' }
- { 'role': 'sftp_access', 'tags': 'sftp_access' }
- { 'role': 'maintenance', 'tags': 'maintenance' }
handlers:
- import_tasks: handlers.yaml
- hosts: staging
vars_files:
- vars/versions.yaml
- vars/staging.enc
roles:
- { 'role': 'common', 'tags': 'common' }
- { 'role': 'ssh_port', 'tags': 'ssh_port' }
- { 'role': 'hosts_entry', 'tags': 'hosts_entry' }
- { 'role': 'blog+catalog', 'tags': 'blog+catalog' }
- { 'role': 'acf_pro', 'tags': 'acf_pro' }
- { 'role': 'wiki', 'tags': 'wiki' }
- { 'role': 'forum', 'tags': 'forum' }
- { 'role': 'sftp_access', 'tags': 'sftp_access' }
- { 'role': 'maintenance', 'tags': 'maintenance' }
handlers:
- import_tasks: handlers.yaml