Newer
Older
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
; For hosts parameters see:
; https://docs.ansible.com/ansible/latest/user_guide/intro_inventory.html#connecting-to-hosts-behavioral-inventory-parameters
; hosts list
ms1 ansible_host=10.0.0.1
ms2 ansible_host=10.0.0.2
mw1 ansible_host=10.0.0.3
mw2 ansible_host=10.0.0.4
pg1 ansible_host=192.168.122.1
pg2 ansible_host=192.168.122.2
pg3 ansible_host=192.168.122.3
; groups list and their members
[msmonitor]
ms1
[postgres]
pg1
pg2
pg3
[mirismanager]
ms1
[mediaserver]
ms1
ms2
[wowza]
ms1
ms2
[celerity]
ms1
[mediaworker]
mw1
mw2
[mediaimport]
ms1
[mediavault]
[netcapture]
[bench_server]
[bench_worker]
; vim:ft=dosini