-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible.cfg
87 lines (68 loc) · 2.67 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[defaults]
inventory = ./inventory.ini
library = ./plugins/modules:/usr/share/ansible/plugins/modules
module_utils = ./plugins/module_utils:/usr/share/ansible/plugins/module_utils
remote_tmp = /tmp
local_tmp = /tmp
forks = 10
ask_pass = False
gathering = smart
interpreter_python = auto_silent
roles_path = ./roles:/usr/share/ansible/roles:/etc/ansible/roles
inject_facts_as_vars = True
stdout_callback = yaml
callbacks_enabled = profile_tasks
log_path = /tmp/ansible.log
ansible_managed = Ansible took care of this file because you were too busy with your modular synthsizers to be bothered.
display_skipped_hosts = False
display_args_to_stdout = False
error_on_undefined_vars = True
deprecation_warnings = False
command_warnings = False
# set plugin path directories here, separate with colons
#action_plugins = /usr/share/ansible/plugins/action
#become_plugins = /usr/share/ansible/plugins/become
#cache_plugins = /usr/share/ansible/plugins/cache
callback_plugins = ./plugins/callback:/usr/share/ansible/plugins/callback
#connection_plugins = /usr/share/ansible/plugins/connection
#lookup_plugins = /usr/share/ansible/plugins/lookup
#inventory_plugins = /usr/share/ansible/plugins/inventory
#vars_plugins = /usr/share/ansible/plugins/vars
#filter_plugins = /usr/share/ansible/plugins/filter
#test_plugins = /usr/share/ansible/plugins/test
#terminal_plugins = /usr/share/ansible/plugins/terminal
#strategy_plugins = /usr/share/ansible/plugins/strategy
strategy = linear
bin_ansible_callbacks = True
fact_caching = jsonfile
fact_caching_connection=/tmp/ansible_cache
fact_caching_prefix = ansible_facts_
fact_caching_timeout = 86400
no_log = False
no_target_syslog = False
# hash_behavior = merge
[inventory]
enable_plugins = ini, host_list, script, auto, yaml, toml
[privilege_escalation]
become = False
become_method = sudo
become_ask_pass = False
[paramiko_connection]
[ssh_connection]
ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s
control_path_dir = /tmp/.ansible/cp
pipelining = True
scp_if_ssh = smart
transfer_method = smart
[persistent_connection]
connect_timeout = 30
[sudo_become_plugin]
[selinux]
[colors]
highlight = bright green
debug = dark gray
ok = blue
changed = yellow
[diff]
always = True
[galaxy]