projects
/
ansible.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
0d82190badf30e29cbc1aa34b48825a33b18c6ec
[ansible.git]
/
site.yml
1
- hosts: all
2
gather_facts: no
3
pre_tasks:
4
- setup:
5
roles:
6
- base
7
tags: base
8
9
- hosts: letsencrypt
10
gather_facts: no
11
roles:
12
- letsencrypt
13
tags: letsencrypt
14
15
# FIXME make this a role, or several
16
- import_playbook: email.yml
17
18
- hosts: bind
19
gather_facts: no
20
roles:
21
- bind
22
tags: bind
23
24
- hosts: prosody
25
gather_facts: no
26
roles:
27
- prosody
28
tags: prosody
29
30
- hosts: apache
31
gather_facts: no
32
roles:
33
- apache
34
tags: apache