-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible.cfg
38 lines (27 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
[defaults]
# Disable .retry file creation
retry_files_enabled=False
# Change default inventory file and location
inventory=inventory
# Make error message human readable
# This may suppress the output of ansible adhoc commands, however, this option may be
# desired when reviewing the error output from either ansible or ansible-playbook command.
# There is a known Ansible bug. Comment either stdout_callback=yaml or bin_ansible_callbacks=True
# to allow stdout from ansible -m shell -a commands to be viewed at the command line.
# Use the YAML callback plugin.
#stdout_callback=yaml
# Use the stdout_callback when running ad-hoc commands.
bin_ansible_callbacks=True
# Provide warning if similar module command is available vs shell command
command_warnings=False
# Ignore intial host key checking (bad security)
host_key_checking=False
# log file
log_path=ansible.log
#display_args_to_stdout = True
# force python3 interpreter and modules to be used with ansible
ansible_python_interpreter=/usr/bin/python3
forks=20
internal_poll_interval = 0.05
[ssh_connection]
pipelining=True