-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplaybook.yml
executable file
·61 lines (52 loc) · 961 Bytes
/
playbook.yml
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
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env ansible-playbook
# Execute this playbook as `./playbook.yml`
- hosts: all
roles:
- role: common
tags: common
- hosts: webservers
roles:
- role: mailserver
tags: mailserver
- role: database
tags: database
- role: webserver
tags: webserver
- hosts: workstations
roles:
- role: ssh
tags: ssh
- role: mailserver
tags: mailserver
- role: mailclient
tags: mailclient
- role: database
tags: database
- role: workstation
tags: workstation
- role: X
tags: X
- role: Xworkstation
tags: Xworkstation
- hosts: gamestations
roles:
- role: X
tags: X
- role: gamestation
tags: gamestation
- hosts: kiosks
roles:
- role: X
tags: X
- hosts: laptops
roles:
- role: laptop
tags: laptop
- hosts: wol
roles:
- role: wol
tags: wol
- hosts: ssh
roles:
- role: ssh
tags: ssh