-
Notifications
You must be signed in to change notification settings - Fork 1
/
ansible.cfg
68 lines (61 loc) · 1.45 KB
/
ansible.cfg
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
[defaults]
inventory = /etc/ansible/hosts
library = /usr/share/ansible
remote_tmp = $HOME/.ansible/tmp
local_tmp = $HOME/.ansible/tmp
forks = 5
poll_interval = 15
sudo_user = root
ask_sudo_pass = False
ask_pass = False
transport = smart
remote_port = 22
gathering = smart
gather_subset = all
gather_timeout = 30
roles_path = /etc/ansible/roles
executable = /bin/bash
system_warnings = True
strategy = linear
nocolor = 0
no_log = False
callback_whitelist = timer, profile_tasks, profile_roles
log_path = ./log/ansible.log
interpreter_python = /usr/local/bin/python3
[privilege_escalation]
become = False
become_method = sudo
become_user = root
become_ask_pass = False
[paramiko_connection]
record_host_keys = True
pty = True
[ssh_connection]
pipelining = True
scp_if_ssh = smart
[sudo_become_plugin]
#flags = -H -S -n
#user = root
[accelerate]
accelerate_port = 5099
accelerate_timeout = 30
accelerate_connect_timeout = 5.0
accelerate_daemon_timeout = 30
accelerate_multi_key = yes
[colors]
#highlight = white
#verbose = blue
#warn = bright purple
#error = red
#debug = dark gray
#deprecate = purple
#skip = cyan
#unreachable = red
#ok = green
#changed = yellow
#diff_add = green
#diff_remove = red
#diff_lines = cyan
[diff]
always = False
context = 3