blob: 74a519018bc28a6c215d770a4b4a2c8891e68886 (
plain) (
blame)
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
62
63
64
65
66
67
68
|
# =========================================================================== #
# _ __ __ _ __
# ____ _____ _____(_) /_ / /__ (_)___ _ _____ ____ / /_____ _______ __
# / __ `/ __ \/ ___/ / __ \/ / _ \ / / __ \ | / / _ \/ __ \/ __/ __ \/ ___/ / / /
# / /_/ / / / (__ ) / /_/ / / __/ / / / / / |/ / __/ / / / /_/ /_/ / / / /_/ /
# \__,_/_/ /_/____/_/_.___/_/\___/ /_/_/ /_/|___/\___/_/ /_/\__/\____/_/ \__, /
# /____/
#
# =========================================================================== #
# =========================================================================== #
# CLIENT GROUPS
# =========================================================================== #
[clients]
WS-bentonite
LP-graphite
# =========================================================================== #
# SERVER GROUPS
# =========================================================================== #
[local]
localhost
[servers]
CHV-DC-rainbow
OOP-FS-raspberry
OOP-DV-yellow
OOP-DV-hell
# SERVER TYPES
[serverdev]
OOP-DC-yellow
[servergit]
OOP-FS-raspberry
[serversyncthing]
OOP-FS-raspberry
[servervpn]
CHV-DC-rainbow
[serverweb]
CHV-DC-rainbow
# SERVER OS
[oscentos]
CHV-DC-rainbow
[osdebian]
OOP-FS-raspberry
# =========================================================================== #
# SERVER VARIABLES
# =========================================================================== #
[servers:vars]
ansible_python_interpreter="/usr/bin/python3"
ansible_port="2244"
[oscentos:vars]
ansible_distribution="CentOs"
[osdebian:vars]
ansible_distribution="Debian"
|