UNCLASSIFIED

Skip to content
Snippets Groups Projects
Commit a4629c10 authored by kmc-home's avatar kmc-home
Browse files

add ansible.cfg

parent f21911fe
No related merge requests found
[defaults]
# Inventory and paths
inventory = inventory/hosts
roles_path = roles
remote_tmp = /tmp/ansible
local_tmp = /tmp/ansible
# SSH settings
host_key_checking = False
remote_user = ansible
private_key_file = ../docker/keys/ansible_key
# Performance
forks = 10
gathering = smart
fact_caching = jsonfile
fact_caching_connection = /tmp/ansible_facts
fact_caching_timeout = 7200
# Output formatting
stdout_callback = yaml
display_skipped_hosts = False
display_ok_hosts = True
show_custom_stats = True
# Default behaviors
retry_files_enabled = False
deprecation_warnings = False
command_warnings = False
interpreter_python = auto_silent
[privilege_escalation]
become = True
become_method = sudo
become_user = root
become_ask_pass = False
[ssh_connection]
pipelining = True
control_path = /tmp/ansible-ssh-%%h-%%p-%%r
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment