-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathansible.cfg
44 lines (34 loc) · 1.1 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
[defaults]
force_valid_group_names = ignore
inventory = ./inventory
library = ./modules
action_plugins = ./modules/action_plugins
roles_path = ./roles
sudo_user = root
remote_user = root
command_warnings = False
private_key_file = ~/.ssh/id_rsa
deprecation_warnings = False
forks = 20
modules_name = shell
gathering = smart
display_skipped_hosts = False
log_path = /var/log/ansible.log
timeout = 10
remote_port = 22
[inventory]
[privilege_escalation]
become = True
become_method = sudo
become_user = root
become_ask_pass = False
[paramiko_connection]
[ssh_connection]
pipelining = True
host_key_checking = False
#ssh_args = -o ProxyCommand="nc -X connect -x 127.0.0.1:3128 %h %p"
[persistent_connection]
[accelerate]
[selinux]
[colors]
[diff]